Deleted Added
full compact
rtsocket.c (256281) rtsocket.c (281974)
1/*-
2 * Copyright (c) 2006 Robert N. M. Watson
3 * 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

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

18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
25 *
1/*-
2 * Copyright (c) 2006 Robert N. M. Watson
3 * 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

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

18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
25 *
26 * $FreeBSD: stable/10/tools/regression/sockets/rtsocket/rtsocket.c 157603 2006-04-09 14:48:38Z rwatson $
26 * $FreeBSD: stable/10/tools/regression/sockets/rtsocket/rtsocket.c 281974 2015-04-25 05:31:52Z ngie $
27 */
28
29/*
30 * Simple routing socket regression test: create and destroy a raw routing
31 * socket, and make sure that dgram and stream don't work, socketpair, etc.
32 */
33
34#include <sys/types.h>
35#include <sys/socket.h>
36
37#include <net/route.h>
38
39#include <err.h>
40#include <errno.h>
41#include <unistd.h>
42
43int
27 */
28
29/*
30 * Simple routing socket regression test: create and destroy a raw routing
31 * socket, and make sure that dgram and stream don't work, socketpair, etc.
32 */
33
34#include <sys/types.h>
35#include <sys/socket.h>
36
37#include <net/route.h>
38
39#include <err.h>
40#include <errno.h>
41#include <unistd.h>
42
43int
44main(int argc, char *argv[])
44main(void)
45{
46 int sock, socks[2];
47
48 sock = socket(PF_ROUTE, SOCK_STREAM, 0);
49 if (sock >= 0) {
50 close(sock);
51 errx(-1, "socket(PF_ROUTE, SOCK_STREAM, 0) returned %d",
52 sock);

--- 49 unchanged lines hidden ---
45{
46 int sock, socks[2];
47
48 sock = socket(PF_ROUTE, SOCK_STREAM, 0);
49 if (sock >= 0) {
50 close(sock);
51 errx(-1, "socket(PF_ROUTE, SOCK_STREAM, 0) returned %d",
52 sock);

--- 49 unchanged lines hidden ---