Deleted Added
full compact
udp_var.h (12325) udp_var.h (12881)
1/*
2 * Copyright (c) 1982, 1986, 1989, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 17 unchanged lines hidden (view full) ---

26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 * SUCH DAMAGE.
32 *
33 * @(#)udp_var.h 8.1 (Berkeley) 6/10/93
1/*
2 * Copyright (c) 1982, 1986, 1989, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 17 unchanged lines hidden (view full) ---

26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 * SUCH DAMAGE.
32 *
33 * @(#)udp_var.h 8.1 (Berkeley) 6/10/93
34 * $Id: udp_var.h,v 1.6 1995/11/14 20:34:56 phk Exp $
34 * $Id: udp_var.h,v 1.7 1995/11/16 09:51:07 bde Exp $
35 */
36
37#ifndef _NETINET_UDP_VAR_H_
38#define _NETINET_UDP_VAR_H_
39
40/*
41 * UDP kernel structures and variables.
42 */

--- 44 unchanged lines hidden (view full) ---

87 { "recvspace", CTLTYPE_INT }, \
88}
89
90#ifdef KERNEL
91extern struct inpcbhead udb;
92extern struct inpcbinfo udbinfo;
93extern struct udpstat udpstat;
94
35 */
36
37#ifndef _NETINET_UDP_VAR_H_
38#define _NETINET_UDP_VAR_H_
39
40/*
41 * UDP kernel structures and variables.
42 */

--- 44 unchanged lines hidden (view full) ---

87 { "recvspace", CTLTYPE_INT }, \
88}
89
90#ifdef KERNEL
91extern struct inpcbhead udb;
92extern struct inpcbinfo udbinfo;
93extern struct udpstat udpstat;
94
95void udp_ctlinput __P((int, struct sockaddr *, struct ip *));
95void udp_ctlinput __P((int, struct sockaddr *, void *));
96void udp_init __P((void));
97void udp_input __P((struct mbuf *, int));
98int udp_usrreq __P((struct socket *,
99 int, struct mbuf *, struct mbuf *, struct mbuf *));
100#endif
101
102#endif
96void udp_init __P((void));
97void udp_input __P((struct mbuf *, int));
98int udp_usrreq __P((struct socket *,
99 int, struct mbuf *, struct mbuf *, struct mbuf *));
100#endif
101
102#endif