vjbsdhdr.h
上传用户:yyhongfa
上传日期:2013-01-18
资源大小:267k
文件大小:2k
开发平台:

C/C++

  1. #ifndef VJBSDHDR_H
  2. #define VJBSDHDR_H
  3. #include "lwip/tcp.h"
  4. /*
  5.  * Structure of an internet header, naked of options.
  6.  *
  7.  * We declare ip_len and ip_off to be short, rather than u_short
  8.  * pragmatically since otherwise unsigned comparisons can result
  9.  * against negative integers quite easily, and fail in subtle ways.
  10.  */
  11. PACK_STRUCT_BEGIN
  12. struct ip
  13. {
  14. #if defined(NO_CHAR_BITFIELDS)
  15. u_char ip_hl_v; /* bug in GCC for mips means the bitfield stuff will sometimes break - so we use a char for both and get round it with macro's instead... */
  16. #else
  17. #if BYTE_ORDER == LITTLE_ENDIAN
  18. unsigned ip_hl:4, /* header length */
  19. ip_v:4; /* version */
  20. #elif BYTE_ORDER == BIG_ENDIAN 
  21. unsigned ip_v:4, /* version */
  22. ip_hl:4; /* header length */
  23. #else
  24. //COMPLAIN - NO BYTE ORDER SELECTED!
  25. #endif
  26. #endif
  27. u_char ip_tos; /* type of service */
  28. u_short ip_len; /* total length */
  29. u_short ip_id; /* identification */
  30. u_short ip_off; /* fragment offset field */
  31. #define IP_DF 0x4000 /* dont fragment flag */
  32. #define IP_MF 0x2000 /* more fragments flag */
  33. #define IP_OFFMASK 0x1fff /* mask for fragmenting bits */
  34. u_char ip_ttl; /* time to live */
  35. u_char ip_p; /* protocol */
  36. u_short ip_sum; /* checksum */
  37. struct in_addr ip_src,ip_dst; /* source and dest address */
  38. };
  39. PACK_STRUCT_END
  40. typedef u32_t tcp_seq;
  41. /*
  42.  * TCP header.
  43.  * Per RFC 793, September, 1981.
  44.  */
  45. PACK_STRUCT_BEGIN
  46. struct tcphdr  
  47. {
  48. u_short th_sport; /* source port */
  49. u_short th_dport; /* destination port */
  50. tcp_seq th_seq; /* sequence number */
  51. tcp_seq th_ack; /* acknowledgement number */
  52. #if defined(NO_CHAR_BITFIELDS)
  53. u_char th_x2_off;
  54. #else
  55. #if BYTE_ORDER == LITTLE_ENDIAN
  56. unsigned th_x2:4, /* (unused) */
  57. th_off:4; /* data offset */
  58. #endif
  59. #if BYTE_ORDER == BIG_ENDIAN 
  60. unsigned th_off:4, /* data offset */
  61. th_x2:4; /* (unused) */
  62. #endif
  63. #endif
  64. u_char th_flags;
  65. u_short th_win; /* window */
  66. u_short th_sum; /* checksum */
  67. u_short th_urp; /* urgent pointer */
  68. };
  69. PACK_STRUCT_END
  70. #endif /* VJBSDHDR_H */