Module Name:    src
Committed By:   maxv
Date:           Thu Feb  8 10:30:30 UTC 2018

Modified Files:
        src/sys/netinet: udp_var.h

Log Message:
Style, and remove prototype of udp_sysctl (does not exist).


To generate a diff of this commit:
cvs rdiff -u -r1.42 -r1.43 src/sys/netinet/udp_var.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/netinet/udp_var.h
diff -u src/sys/netinet/udp_var.h:1.42 src/sys/netinet/udp_var.h:1.43
--- src/sys/netinet/udp_var.h:1.42	Thu Aug 10 04:31:58 2017
+++ src/sys/netinet/udp_var.h	Thu Feb  8 10:30:30 2018
@@ -1,4 +1,4 @@
-/*	$NetBSD: udp_var.h,v 1.42 2017/08/10 04:31:58 ryo Exp $	*/
+/*	$NetBSD: udp_var.h,v 1.43 2018/02/08 10:30:30 maxv Exp $	*/
 
 /*
  * Copyright (c) 1982, 1986, 1989, 1993
@@ -88,20 +88,17 @@ struct	udpiphdr {
 
 #ifdef _KERNEL
 
-extern	struct	inpcbtable udbtable;
+extern struct inpcbtable udbtable;
 extern const struct pr_usrreqs udp_usrreqs;
 
-void	 *udp_ctlinput(int, const struct sockaddr *, void *);
-int	 udp_ctloutput(int, struct socket *, struct sockopt *);
-void	 udp_init(void);
-void	 udp_init_common(void);
-void	 udp_input(struct mbuf *, ...);
-int	 udp_output(struct mbuf *, struct inpcb *, struct mbuf *, struct lwp *);
-int	 udp_sysctl(int *, u_int, void *, size_t *, void *, size_t);
-
-int	udp_input_checksum(int af, struct mbuf *, const struct udphdr *, int,
-	    int);
-void	udp_statinc(u_int);
+void *udp_ctlinput(int, const struct sockaddr *, void *);
+int udp_ctloutput(int, struct socket *, struct sockopt *);
+void udp_init(void);
+void udp_init_common(void);
+void udp_input(struct mbuf *, ...);
+int udp_output(struct mbuf *, struct inpcb *, struct mbuf *, struct lwp *);
+int udp_input_checksum(int af, struct mbuf *, const struct udphdr *, int, int);
+void udp_statinc(u_int);
 #endif /* _KERNEL */
 
 #endif /* !_NETINET_UDP_VAR_H_ */

Reply via email to