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

This commit is contained in:
maxv 2018-02-08 10:30:30 +00:00
parent 3f090c31d6
commit efe273b87a
1 changed files with 10 additions and 13 deletions

View File

@ -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_ */