Index: packages/net/bsd_tcpip//current/ChangeLog =================================================================== RCS file: /cvs/ecos/ecos-opt/net/net/bsd_tcpip/current/ChangeLog,v retrieving revision 1.24 diff -c -r1.24 ChangeLog *** packages/net/bsd_tcpip//current/ChangeLog 12 May 2003 11:03:05 -0000 1.24 --- packages/net/bsd_tcpip//current/ChangeLog 4 Jun 2003 20:25:29 -0000 *************** *** 1,3 **** --- 1,10 ---- + 2003-06-04 Michael Checky + + * include/netinet/icmp_var.h: Changed icmpstat definition to + a declaration because ld is generating a multiple symbol definition + error. + * src/sys/netinet/ip_icmp.c: Added an icmpstat definition. + 2003-05-12 Motoya Kurotsu * src/ecos/timeout.c (do_timeout): The head of the linked list of Index: packages/net/bsd_tcpip//current/include/netinet/icmp_var.h =================================================================== RCS file: /cvs/ecos/ecos-opt/net/net/bsd_tcpip/current/include/netinet/icmp_var.h,v retrieving revision 1.1 diff -c -r1.1 icmp_var.h *** packages/net/bsd_tcpip//current/include/netinet/icmp_var.h 20 May 2002 22:25:01 -0000 1.1 --- packages/net/bsd_tcpip//current/include/netinet/icmp_var.h 4 Jun 2003 20:25:29 -0000 *************** *** 92,98 **** #define BANDLIM_MAX 4 // Used by SNMP ! struct icmpstat icmpstat; #endif --- 92,98 ---- #define BANDLIM_MAX 4 // Used by SNMP ! extern struct icmpstat icmpstat; #endif Index: packages/net/bsd_tcpip//current/src/sys/netinet/ip_icmp.c =================================================================== RCS file: /cvs/ecos/ecos-opt/net/net/bsd_tcpip/current/src/sys/netinet/ip_icmp.c,v retrieving revision 1.1 diff -c -r1.1 ip_icmp.c *** packages/net/bsd_tcpip//current/src/sys/netinet/ip_icmp.c 20 May 2002 22:25:02 -0000 1.1 --- packages/net/bsd_tcpip//current/src/sys/netinet/ip_icmp.c 4 Jun 2003 20:25:29 -0000 *************** *** 83,88 **** --- 83,89 ---- * host table maintenance routines. */ + struct icmpstat icmpstat; static int icmpmaskrepl = 0; static int drop_redirect = 0; static int log_redirect = 0;