Deleted Added
full compact
raw_usrreq.c (119995) raw_usrreq.c (122875)
1/*
2 * Copyright (c) 1980, 1986, 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 * @(#)raw_usrreq.c 8.1 (Berkeley) 6/10/93
1/*
2 * Copyright (c) 1980, 1986, 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 * @(#)raw_usrreq.c 8.1 (Berkeley) 6/10/93
34 * $FreeBSD: head/sys/net/raw_usrreq.c 119995 2003-09-11 21:40:21Z ru $
34 * $FreeBSD: head/sys/net/raw_usrreq.c 122875 2003-11-18 00:39:07Z rwatson $
35 */
36
37#include <sys/param.h>
38#include <sys/lock.h>
39#include <sys/mbuf.h>
40#include <sys/protosw.h>
41#include <sys/signalvar.h>
42#include <sys/socket.h>

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

290 return 0;
291}
292
293struct pr_usrreqs raw_usrreqs = {
294 raw_uabort, pru_accept_notsupp, raw_uattach, raw_ubind, raw_uconnect,
295 pru_connect2_notsupp, pru_control_notsupp, raw_udetach,
296 raw_udisconnect, pru_listen_notsupp, raw_upeeraddr, pru_rcvd_notsupp,
297 pru_rcvoob_notsupp, raw_usend, pru_sense_null, raw_ushutdown,
35 */
36
37#include <sys/param.h>
38#include <sys/lock.h>
39#include <sys/mbuf.h>
40#include <sys/protosw.h>
41#include <sys/signalvar.h>
42#include <sys/socket.h>

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

290 return 0;
291}
292
293struct pr_usrreqs raw_usrreqs = {
294 raw_uabort, pru_accept_notsupp, raw_uattach, raw_ubind, raw_uconnect,
295 pru_connect2_notsupp, pru_control_notsupp, raw_udetach,
296 raw_udisconnect, pru_listen_notsupp, raw_upeeraddr, pru_rcvd_notsupp,
297 pru_rcvoob_notsupp, raw_usend, pru_sense_null, raw_ushutdown,
298 raw_usockaddr, sosend, soreceive, sopoll
298 raw_usockaddr, sosend, soreceive, sopoll, pru_sosetlabel_null
299};
299};