blob: 9927e851922d78b8d96879a762d2f457bdf3a9a4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
#ifndef __SWITCH_CORE_H
#define __SWITCH_CORE_H
#include <linux/version.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
#ifndef KERNEL_VERSION
#define KERNEL_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))
#endif
#if LINUX_VERSION_CODE < KERNEL_VERSION(2,5,0)
#define LINUX_2_4
#endif
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
|