Deleted Added
full compact
udp_var.h (52904) udp_var.h (54263)
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 * $FreeBSD: head/sys/netinet/udp_var.h 52904 1999-11-05 14:41:39Z shin $
34 * $FreeBSD: head/sys/netinet/udp_var.h 54263 1999-12-07 17:39:16Z shin $
35 */
36
37#ifndef _NETINET_UDP_VAR_H_
38#define _NETINET_UDP_VAR_H_
39
40/*
41 * UDP kernel structures and variables.
42 */

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

110extern struct inpcbinfo udbinfo;
111extern u_long udp_sendspace;
112extern u_long udp_recvspace;
113extern struct udpstat udpstat;
114extern int log_in_vain;
115
116void udp_ctlinput __P((int, struct sockaddr *, void *));
117void udp_init __P((void));
35 */
36
37#ifndef _NETINET_UDP_VAR_H_
38#define _NETINET_UDP_VAR_H_
39
40/*
41 * UDP kernel structures and variables.
42 */

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

110extern struct inpcbinfo udbinfo;
111extern u_long udp_sendspace;
112extern u_long udp_recvspace;
113extern struct udpstat udpstat;
114extern int log_in_vain;
115
116void udp_ctlinput __P((int, struct sockaddr *, void *));
117void udp_init __P((void));
118void udp_input __P((struct mbuf *, int));
118void udp_input __P((struct mbuf *, int, int));
119
120void udp_notify __P((struct inpcb *inp, int errno));
121int udp_shutdown __P((struct socket *so));
122#endif
123
124#endif
119
120void udp_notify __P((struct inpcb *inp, int errno));
121int udp_shutdown __P((struct socket *so));
122#endif
123
124#endif