Date: Thu, 18 Jun 2009 09:29:47 GMT From: Ana Kukec <anchie@FreeBSD.org> To: Perforce Change Reviews <perforce@FreeBSD.org> Subject: PERFORCE change 164650 for review Message-ID: <200906180929.n5I9TlrF090818@repoman.freebsd.org>
index | next in thread | raw e-mail
http://perforce.freebsd.org/chv.cgi?CH=164650 Change 164650 by anchie@anchie_malimis on 2009/06/18 09:29:27 Minor fixes in function declarations. Affected files ... .. //depot/projects/soc2009/anchie_send/src/sys/netinet6/icmp6.c#10 edit .. //depot/projects/soc2009/anchie_send/src/sys/netinet6/nd6.c#8 edit .. //depot/projects/soc2009/anchie_send/src/sys/netinet6/send.c#10 edit .. //depot/projects/soc2009/anchie_send/src/sys/netinet6/send.h#10 edit Differences ... ==== //depot/projects/soc2009/anchie_send/src/sys/netinet6/icmp6.c#10 (text+ko) ==== @@ -141,8 +141,8 @@ struct ifnet *, int)); static int icmp6_notify_error(struct mbuf **, int, int, int); -int (*send_output_hook)(int, struct ifnet *, struct mbuf *, int); - +int (*send_output_hook)(int, struct ifnet *, struct mbuf *, int); +int (*send_input_hook)(void); void icmp6_init(void) ==== //depot/projects/soc2009/anchie_send/src/sys/netinet6/nd6.c#8 (text+ko) ==== @@ -130,6 +130,9 @@ extern int dad_maxtry; #endif +int (*send_output_hook)(int, struct ifnet *, struct mbuf *, int); +int (*send_input_hook)(void); + void nd6_init(void) { ==== //depot/projects/soc2009/anchie_send/src/sys/netinet6/send.c#10 (text+ko) ==== @@ -10,8 +10,14 @@ #include <netinet6/send.h> +#if 0 static int X_send_input_hook(void); static int X_send_output_hook(int, struct ifnet *, struct mbuf *, int); +#endif +#if 0 +int (*send_output_hook)(int, struct ifnet *, struct mbuf *, int); +int (*send_input_hook)(void); +#endif static int X_send_input_hook(void) ==== //depot/projects/soc2009/anchie_send/src/sys/netinet6/send.h#10 (text+ko) ====help
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200906180929.n5I9TlrF090818>
