aboutsummaryrefslogtreecommitdiff
path: root/extras/ezio/terminal.h
diff options
context:
space:
mode:
authorBen Pfaff <blp@nicira.com>2010-08-20 12:37:01 -0700
committerBen Pfaff <blp@nicira.com>2010-08-23 09:25:14 -0700
commit4c1eabc12300be3190d2fb66edc07d9c607f539e (patch)
tree9925932aee40144a44c9f2273975991720b6bbb9 /extras/ezio/terminal.h
parent38c6ecbc8d3664daed077617bb3b3508ba8aa767 (diff)
Remove ezio-term and ovs-switchui utilities.
These utilities were useful when Nicira was building switches with 16x2 LCD front panel displays, but they aren't useful for other environments and even Nicira does not use that kind of switch any longer. So remove them and all the build infrastructure on which they depended.
Diffstat (limited to 'extras/ezio/terminal.h')
-rw-r--r--extras/ezio/terminal.h29
1 files changed, 0 insertions, 29 deletions
diff --git a/extras/ezio/terminal.h b/extras/ezio/terminal.h
deleted file mode 100644
index a5ac7f3d..00000000
--- a/extras/ezio/terminal.h
+++ /dev/null
@@ -1,29 +0,0 @@
-/* Copyright (c) 2008, 2009 Nicira Networks, Inc.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at:
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-#ifndef TERMINAL_H
-#define TERMINAL_H 1
-
-#include <stdbool.h>
-#include <stdint.h>
-
-struct ezio;
-
-struct terminal *terminal_create(void);
-void terminal_destroy(struct terminal *);
-int terminal_run(struct terminal *, struct ezio *, int input_fd);
-void terminal_wait(struct terminal *, int input_fd);
-
-#endif /* terminal.h */