arcnet.h
上传用户:hepax88
上传日期:2007-01-03
资源大小:1101k
文件大小:1k
源码类别:

TCP/IP协议栈

开发平台:

Visual C++

  1. /* Generic ARCnet constants and templates */
  2. #ifndef _ARCNET_H
  3. #define _ARCNET_H
  4. #ifndef _GLOBAL_H
  5. #include "global.h"
  6. #endif
  7. #ifndef _MBUF_H
  8. #include "mbuf.h"
  9. #endif
  10. #ifndef _IFACE_H
  11. #include "iface.h"
  12. #endif
  13. #define AADDR_LEN 1
  14. /* Format of an ARCnet header */
  15. struct arc {
  16. uint8 source[AADDR_LEN];
  17. uint8 dest[AADDR_LEN];
  18. uint8 type;
  19. };
  20. #define ARCLEN 3
  21. /* ARCnet broadcast address */
  22. extern uint8 ARC_bdcst[];
  23. /* ARCnet type fields */
  24. #define ARC_IP 0xf0 /* Type field for IP */
  25. #define ARC_ARP 0xf1 /* Type field for ARP */
  26. /* In file arcnet.c: */
  27. void htonarc(struct arc *arc,struct mbuf **data);
  28. int ntoharc(struct arc *arc,struct mbuf **bpp);
  29. char *parc(char *out,uint8 *addr);
  30. int garc(uint8 *out,char *cp);
  31. int anet_send(struct mbuf **bp,struct iface *iface,int32 gateway,uint8 tos);
  32. int anet_output(struct iface *iface,uint8 dest[],uint8 source[],uint16 type,
  33. struct mbuf **data);
  34. void aproc(struct iface *iface,struct mbuf **bp);
  35. #endif /* _ARCNET_H */