PERFORCE change 164650 for review

Ana Kukec anchie at FreeBSD.org
Thu Jun 18 09:29:49 UTC 2009


http://perforce.freebsd.org/chv.cgi?CH=164650

Change 164650 by anchie at 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) ====



More information about the p4-projects mailing list