/[lwip]/lwip/src/netif/etharp.c
ViewVC logotype

Diff of /lwip/src/netif/etharp.c

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

revision 1.84 by likewise, Thu Nov 25 14:04:45 2004 UTC revision 1.85 by likewise, Sun Nov 28 18:00:20 2004 UTC
# Line 55  Line 55 
55  #  include "lwip/dhcp.h"  #  include "lwip/dhcp.h"
56  #endif  #endif
57    
58  /** the time an ARP entry stays valid after its last update, (120 * 10) seconds = 20 minutes. */  /** the time an ARP entry stays valid after its last update,
59  #define ARP_MAXAGE 120   * (240 * 5) seconds = 20 minutes.
60  /** the time an ARP entry stays pending after first request, (1 * 10) seconds = 10 seconds. */   */
61  #define ARP_MAXPENDING 1  #define ARP_MAXAGE 240
62    /** the time an ARP entry stays pending after first request,
63     * (2 * 5) seconds = 10 seconds.
64     *
65     * @internal Keep this number at least 2, otherwise it might
66     * run out instantly if the timeout occurs directly after a request.
67     */
68    #define ARP_MAXPENDING 2
69    
70  #define HWTYPE_ETHERNET 1  #define HWTYPE_ETHERNET 1
71    

Legend:
Removed from v.1.84  
changed lines
  Added in v.1.85

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