/[lwip]/lwip/src/core/tcp_out.c
ViewVC logotype

Diff of /lwip/src/core/tcp_out.c

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

revision 1.21 by likewise, Thu May 1 13:24:01 2003 UTC revision 1.22 by jani, Mon May 19 14:41:54 2003 UTC
# Line 59  Line 59 
59  #include "lwip/stats.h"  #include "lwip/stats.h"
60    
61  #if LWIP_TCP  #if LWIP_TCP
62  #define MIN(x,y) (x) < (y)? (x): (y)  #define LWIP_MIN(x,y) (x) < (y)? (x): (y)
63    
64    
65    
# Line 367  tcp_output(struct tcp_pcb *pcb) Line 367  tcp_output(struct tcp_pcb *pcb)
367      return ERR_OK;      return ERR_OK;
368    }    }
369        
370    wnd = MIN(pcb->snd_wnd, pcb->cwnd);    wnd = LWIP_MIN(pcb->snd_wnd, pcb->cwnd);
371    
372        
373    seg = pcb->unsent;    seg = pcb->unsent;

Legend:
Removed from v.1.21  
changed lines
  Added in v.1.22

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