-
Notifications
You must be signed in to change notification settings - Fork 9
/
enet.h
51 lines (40 loc) · 1.29 KB
/
enet.h
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
#ifndef _ENET_H
#define _ENET_H
/* Generic Ethernet constants and templates */
#ifndef _GLOBAL_H
#include "global.h"
#endif
#ifndef _MBUF_H
#include "mbuf.h"
#endif
#ifndef _IFACE_H
#include "iface.h"
#endif
#define EADDR_LEN 6
/* Format of an Ethernet header */
struct ether {
uint8 dest[EADDR_LEN];
uint8 source[EADDR_LEN];
uint16 type;
};
#define ETHERLEN 14
/* Ethernet broadcast address */
extern uint8 Ether_bdcst[];
/* Ethernet type fields */
#define IP_TYPE 0x800 /* Type field for IP */
#define ARP_TYPE 0x806 /* Type field for ARP */
#define REVARP_TYPE 0x8035 /* Type field for reverse ARP */
#define RUNT 60 /* smallest legal size packet, no fcs */
#define GIANT 1514 /* largest legal size packet, no fcs */
#define MAXTRIES 16 /* Maximum number of transmission attempts */
/* In file enet.c: */
char *pether(char *out,uint8 *addr);
int gether(uint8 *out,char *cp);
int enet_send(struct mbuf **bpp,struct iface *iface,int32 gateway,uint8 tos);
int enet_output(struct iface *iface,uint8 dest[],uint8 source[],uint16 type,
struct mbuf **bpp);
void eproc(struct iface *iface,struct mbuf **bpp);
/* In enethdr.c: */
void htonether(struct ether *ether,struct mbuf **data);
int ntohether(struct ether *ether,struct mbuf **bpp);
#endif /* _ENET_H */