From dc82daaa9b0d88dca8684a7a766b253853ee7023 Mon Sep 17 00:00:00 2001 From: Martin Mares Date: Wed, 8 Dec 1999 13:20:19 +0000 Subject: - Path to control socket is selectable via command-line option. - die() when control socket open failed. --- sysdep/unix/main.c | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) (limited to 'sysdep') diff --git a/sysdep/unix/main.c b/sysdep/unix/main.c index 8e2678a..5a49dbd 100644 --- a/sysdep/unix/main.c +++ b/sysdep/unix/main.c @@ -104,6 +104,7 @@ async_config(void) */ static sock *cli_sk; +static char *path_control_socket = PATH_CONTROL_SOCKET; int cli_write(cli *c) @@ -187,6 +188,7 @@ cli_connect(sock *s, int size) s->err_hook = cli_err; s->rbsize = 1024; s->data = c = cli_new(s); + s->pool = c->pool; /* We need to have all the socket buffers allocated in the cli pool */ c->rx_pos = c->rx_buf; c->rx_aux = NULL; return 1; @@ -201,7 +203,8 @@ cli_init_unix(void) s = cli_sk = sk_new(cli_pool); s->type = SK_UNIX_PASSIVE; s->rx_hook = cli_connect; - sk_open_unix(s, PATH_CONTROL_SOCKET); + if (sk_open_unix(s, path_control_socket) < 0) + die("Unable to create control socket %s", path_control_socket); } /* @@ -270,13 +273,13 @@ signal_init(void) * Parsing of command-line arguments */ -static char *opt_list = "c:dD:"; +static char *opt_list = "c:dD:s:"; static int debug_flag = 1; /* FIXME: Turn off for production use */ static void usage(void) { - fprintf(stderr, "Usage: bird [-c ] [-d] [-D ]\n"); + fprintf(stderr, "Usage: bird [-c ] [-d] [-D ] [-s ]\n"); exit(1); } @@ -298,6 +301,9 @@ parse_args(int argc, char **argv) log_init_debug(optarg); debug_flag |= 2; break; + case 's': + path_control_socket = optarg; + break; default: usage(); } -- cgit v1.2.3