diff options
Diffstat (limited to 'sys/netinet/udp_var.h')
-rw-r--r-- | sys/netinet/udp_var.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/sys/netinet/udp_var.h b/sys/netinet/udp_var.h index c58dbce9616..c4bf23fdf2e 100644 --- a/sys/netinet/udp_var.h +++ b/sys/netinet/udp_var.h @@ -1,4 +1,5 @@ -/* $NetBSD: udp_var.h,v 1.10 1995/11/21 01:07:48 cgd Exp $ */ +/* $OpenBSD: udp_var.h,v 1.3 1996/03/03 22:30:52 niklas Exp $ */ +/* $NetBSD: udp_var.h,v 1.12 1996/02/13 23:44:41 christos Exp $ */ /* * Copyright (c) 1982, 1986, 1989, 1993 @@ -61,7 +62,7 @@ struct udpstat { u_long udps_noport; /* no socket on port */ u_long udps_noportbcast; /* of above, arrived as broadcast */ u_long udps_fullsock; /* not delivered, input socket full */ - u_long udpps_pcbcachemiss; /* input packets missing pcb cache */ + u_long udps_pcbhashmiss; /* input packets missing pcb hash */ /* output statistics: */ u_long udps_opackets; /* total output packets */ }; @@ -81,11 +82,10 @@ struct udpstat { struct inpcbtable udbtable; struct udpstat udpstat; -void udp_ctlinput __P((int, struct sockaddr *, struct ip *)); +void *udp_ctlinput __P((int, struct sockaddr *, void *)); void udp_init __P((void)); -void udp_input __P((struct mbuf *, int)); -int udp_output __P((struct inpcb *, - struct mbuf *, struct mbuf *, struct mbuf *)); +void udp_input __P((struct mbuf *, ...)); +int udp_output __P((struct mbuf *, ...)); int udp_sysctl __P((int *, u_int, void *, size_t *, void *, size_t)); int udp_usrreq __P((struct socket *, int, struct mbuf *, struct mbuf *, struct mbuf *)); |