blob: 69848d182834cd8d30bfbf99d185fc1e54acfbc9 (
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
typedef struct Block Block;
struct Block
{
Block *next;
uchar *rp;
uchar *wp;
uchar *lim;
uchar base[];
};
#define BLEN(s) ((s)->wp - (s)->rp)
Block* allocb(int size);
Block* copyblock(Block*, int);
#define freeb(b) free(b)
enum {
Eaddrlen= 6,
ETHERHDRSIZE= 14, /* size of an ethernet header */
Maxpkt= 2000,
};
typedef struct Macent Macent;
struct Macent
{
uchar ea[Eaddrlen];
ushort port;
};
typedef struct Etherpkt Etherpkt;
struct Etherpkt
{
uchar d[Eaddrlen];
uchar s[Eaddrlen];
uchar type[2];
uchar data[1500];
};
enum
{
Cdcunion = 6,
Scether = 6,
Fnether = 15,
};
int debug;
int setmac;
int nprom;
int nmulti;
uchar multiaddr[32][Eaddrlen];
/* to be filled in by *init() */
uchar macaddr[Eaddrlen];
Macent mactab[127];
void etheriq(Block*);
int (*epreceive)(Dev*);
void (*eptransmit)(Dev*, Block*);
int (*eppromiscuous)(Dev*, int);
int (*epmulticast)(Dev*, uchar*, int);
|