From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 16153 invoked by alias); 15 Mar 2006 08:02:40 -0000 Received: (qmail 16137 invoked by uid 9341); 15 Mar 2006 08:02:39 -0000 Date: Wed, 15 Mar 2006 08:02:00 -0000 Message-ID: <20060315080239.16135.qmail@sourceware.org> From: asl@sourceware.org To: ecos-cvs@ecos.sourceware.org Subject: ecos-opt/net/net/lwip_tcpip/current ChangeLog ... Mailing-List: contact ecos-cvs-help@sourceware.org; run by ezmlm Precedence: bulk List-Post: List-Help: , Sender: ecos-cvs-owner@sourceware.org List-Subscribe: X-SW-Source: 2006/txt/msg00070.txt.bz2 List-Id: CVSROOT: /cvs/ecos Module name: ecos-opt Changes by: asl@sourceware.org 2006-03-15 08:02:39 Modified files: net/net/lwip_tcpip/current: ChangeLog net/net/lwip_tcpip/current/cdl: lwip_net.cdl net/net/lwip_tcpip/current/include: lwipopts.h net/net/lwip_tcpip/current/include/lwip: ip_addr.h net/net/lwip_tcpip/current/include/netif: etharp.h net/net/lwip_tcpip/current/src/api: sockets.c net/net/lwip_tcpip/current/src/ecos: init.c net/net/lwip_tcpip/current/src/netif: etharp.c net/net/lwip_tcpip/current/tests: httpd.c nc_test_slave.c socket.c tcpecho.c udpecho.c Log message: * tests/nc_test_slave.c (nc_slave): Fix some of the compiler warnings. * cdl/lwip_net.cdl Changed default value of CYGNUM_LWIP_MEMP_NUM_SYS_TIMEOUT (required for DHCP). Replaced CYGPKG_LWIP_DHCP_OPTIONS with CYGPKG_LWIP_DHCP and add CYGOPT_LWIP_DHCP_MANAGEMENT for automatic DHCP management. * include/lwip/ip_addr.h Add macro ip_addr_netcmp() (copied from lwIP CVS). * include/netif/etharp.h Updated file to version of lwIP CVS. * src/ecos/init.c Add include Add lwip_dhcp_fine_tmr() and lwip_dhcp_coarse_tmr() for DHCP processing. Change tcpip_init_done() to start DHCP timers and ARP timer. Changed lwip_set_addr() to properly setup IP adress if DHCP is used. Added lwip_dhcp_init() for start of DHCP client. Removed start of ARP timer from ecosclue_init(). * src/netif/etharp.c Updated file to version of lwIP CVS.