/[lwip]/lwip/src/include/lwip/tcp.h
ViewVC logotype

Diff of /lwip/src/include/lwip/tcp.h

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.26 by likewise, Wed Sep 8 22:33:46 2004 UTC revision 1.27 by kieranm, Sun Sep 12 15:56:12 2004 UTC
# Line 112  void             tcp_rexmit  (struct tcp Line 112  void             tcp_rexmit  (struct tcp
112  #define TCP_SEQ_LEQ(a,b)    ((s32_t)((a)-(b)) <= 0)  #define TCP_SEQ_LEQ(a,b)    ((s32_t)((a)-(b)) <= 0)
113  #define TCP_SEQ_GT(a,b)     ((s32_t)((a)-(b)) > 0)  #define TCP_SEQ_GT(a,b)     ((s32_t)((a)-(b)) > 0)
114  #define TCP_SEQ_GEQ(a,b)    ((s32_t)((a)-(b)) >= 0)  #define TCP_SEQ_GEQ(a,b)    ((s32_t)((a)-(b)) >= 0)
115    /* is b<=a<=c? */
116    #define TCP_SEQ_BETWEEN(a,b,c) ((c)-(b) >= (a)-(b))
117  #define TCP_FIN 0x01U  #define TCP_FIN 0x01U
118  #define TCP_SYN 0x02U  #define TCP_SYN 0x02U
119  #define TCP_RST 0x04U  #define TCP_RST 0x04U

Legend:
Removed from v.1.26  
changed lines
  Added in v.1.27

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26