]>
git.proxmox.com Git - mirror_ovs.git/blob - tests/test-unix-socket.c
2 * Copyright (c) 2010, 2012, 2014 Nicira, Inc.
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at:
8 * http://www.apache.org/licenses/LICENSE-2.0
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
19 #include "socket-util.h"
27 test_unix_socket_main(int argc
, char *argv
[])
29 const char *sockname1
;
30 const char *sockname2
;
33 set_program_name(argv
[0]);
35 if (argc
!= 2 && argc
!= 3) {
36 ovs_fatal(0, "usage: %s SOCKETNAME1 [SOCKETNAME2]", argv
[0]);
39 sockname2
= argc
> 2 ? argv
[2] : sockname1
;
41 signal(SIGALRM
, SIG_DFL
);
44 /* Create a listening socket under name 'sockname1'. */
45 sock1
= make_unix_socket(SOCK_STREAM
, false, sockname1
, NULL
);
47 ovs_fatal(-sock1
, "%s: bind failed", sockname1
);
49 if (listen(sock1
, 1)) {
50 ovs_fatal(errno
, "%s: listen failed", sockname1
);
53 /* Connect to 'sockname2' (which should be the same file, perhaps under a
55 sock2
= make_unix_socket(SOCK_STREAM
, false, NULL
, sockname2
);
57 ovs_fatal(-sock2
, "%s: connect failed", sockname2
);
64 OVSTEST_REGISTER("test-unix-socket", test_unix_socket_main
);