summaryrefslogtreecommitdiffstats
path: root/target/linux/package/switch/src/switch-core.h
diff options
context:
space:
mode:
authorwbx <wbx@3c298f89-4303-0410-b956-a3cf2f4a3e73>2005-12-25 14:18:55 +0000
committerwbx <wbx@3c298f89-4303-0410-b956-a3cf2f4a3e73>2005-12-25 14:18:55 +0000
commit88b96c0debc94bcf02b02d87f199b25a87989395 (patch)
treef40fe1840b9ca373e81296f3894dec990fbef66c /target/linux/package/switch/src/switch-core.h
parentb001d85a24085fde7fa9c03bca34d34195ffa1bc (diff)
first try to integrate nbds great new switch drivers for 2.4/2.6 with full vlan support for Netgear and Linksys routers, robo and adm switch, tada
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@2776 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/package/switch/src/switch-core.h')
-rw-r--r--target/linux/package/switch/src/switch-core.h35
1 files changed, 35 insertions, 0 deletions
diff --git a/target/linux/package/switch/src/switch-core.h b/target/linux/package/switch/src/switch-core.h
new file mode 100644
index 000000000..c878d4786
--- /dev/null
+++ b/target/linux/package/switch/src/switch-core.h
@@ -0,0 +1,35 @@
+#ifndef __SWITCH_CORE_H
+#define __SWITCH_CORE_H
+
+#include <linux/list.h>
+#define SWITCH_MAX_BUFSZ 4096
+
+#define SWITCH_MEDIA_AUTO 1
+#define SWITCH_MEDIA_100 2
+#define SWITCH_MEDIA_FD 4
+
+typedef int (*switch_handler)(char *buf, int nr);
+
+typedef struct {
+ char *name;
+ switch_handler read, write;
+} switch_config;
+
+
+typedef struct {
+ struct list_head list;
+ char *name;
+ int ports;
+ int vlans;
+ switch_config *driver_handlers, *port_handlers, *vlan_handlers;
+ void *data;
+} switch_driver;
+
+
+extern int switch_register_driver(switch_driver *driver);
+extern void switch_unregister_driver(char *name);
+extern int switch_parse_vlan(char *buf);
+extern int switch_parse_media(char *buf);
+extern int switch_print_media(char *buf, int media);
+
+#endif