enet.h
来自「用c语言实现gprs远端通信中的陶tcp/ip 协议」· C头文件 代码 · 共 52 行
H
52 行
#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 */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?