main.c (a75eb03b9fca3af291ec2c433ddda06121ae927d) main.c (45b00c44ceffeac8143fb8857a12677234114f2b)
1/*
2 * Copyright 6WIND S.A., 2014
3 *
4 * This work is licensed under the terms of the GNU GPL, version 2 or
5 * (at your option) any later version. See the COPYING file in the
6 * top-level directory.
7 */
8

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

48 ivshmem_client_usage(argv[0], 0);
49 break;
50
51 case 'v': /* verbose */
52 args->verbose = 1;
53 break;
54
55 case 'S': /* unix_sock_path */
1/*
2 * Copyright 6WIND S.A., 2014
3 *
4 * This work is licensed under the terms of the GNU GPL, version 2 or
5 * (at your option) any later version. See the COPYING file in the
6 * top-level directory.
7 */
8

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

48 ivshmem_client_usage(argv[0], 0);
49 break;
50
51 case 'v': /* verbose */
52 args->verbose = 1;
53 break;
54
55 case 'S': /* unix_sock_path */
56 args->unix_sock_path = strdup(optarg);
56 args->unix_sock_path = optarg;
57 break;
58
59 default:
60 ivshmem_client_usage(argv[0], 1);
61 break;
62 }
63 }
64}

--- 175 unchanged lines hidden ---
57 break;
58
59 default:
60 ivshmem_client_usage(argv[0], 1);
61 break;
62 }
63 }
64}

--- 175 unchanged lines hidden ---