Added support for the "address" option.
authorWayne Davison <wayned@samba.org>
Mon, 6 Dec 2004 22:45:00 +0000 (22:45 +0000)
committerWayne Davison <wayned@samba.org>
Mon, 6 Dec 2004 22:45:00 +0000 (22:45 +0000)
loadparm.c

index 8c06860..5923979 100644 (file)
@@ -102,6 +102,7 @@ typedef struct
        char *log_file;
        char *pid_file;
        char *socket_options;
+       char *bind_address;
        int syslog_facility;
        int max_verbosity;
        int rsync_port;
@@ -273,6 +274,7 @@ static struct parm_struct parm_table[] =
   {"pid file",         P_STRING,  P_GLOBAL, &Globals.pid_file,      NULL,  0},
   {"max verbosity",    P_INTEGER, P_GLOBAL, &Globals.max_verbosity, NULL,  0},
   {"port",             P_INTEGER, P_GLOBAL, &Globals.rsync_port,    NULL,  0},
+  {"address",          P_STRING,  P_GLOBAL, &Globals.bind_address,  NULL,  0},
 
   {"timeout",          P_INTEGER, P_LOCAL,  &sDefault.timeout,     NULL,  0},
   {"max connections",  P_INTEGER, P_LOCAL,  &sDefault.max_connections,NULL, 0},
@@ -356,6 +358,7 @@ FN_GLOBAL_STRING(lp_socket_options, &Globals.socket_options)
 FN_GLOBAL_INTEGER(lp_syslog_facility, &Globals.syslog_facility)
 FN_GLOBAL_INTEGER(lp_max_verbosity, &Globals.max_verbosity)
 FN_GLOBAL_INTEGER(lp_rsync_port, &Globals.rsync_port)
+FN_GLOBAL_STRING(lp_bind_address, &Globals.bind_address)
 
 FN_LOCAL_STRING(lp_name, name)
 FN_LOCAL_STRING(lp_comment, comment)