summaryrefslogtreecommitdiffhomepage
path: root/src/conf.h
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2013-11-07 11:00:19 +0100
committerMichael Adam <obnox@samba.org>2013-11-09 13:34:33 +0100
commite82080a5f62991e2892b88dce108537f64960e55 (patch)
treeaab2be1c8d65ae66eddb511a5bfc8605c56d219e /src/conf.h
parentd0732f9adeb523422e755bfc11d03e9cbccc99f6 (diff)
[BB#63] conf: Allow multiple Listen statements in the config.
This introduces a list (vector) of addresses instead of having just one address string. Signed-off-by: Michael Adam <obnox@samba.org>
Diffstat (limited to 'src/conf.h')
-rw-r--r--src/conf.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/conf.h b/src/conf.h
index f62a854..0fb4226 100644
--- a/src/conf.h
+++ b/src/conf.h
@@ -46,7 +46,7 @@ struct config_s {
unsigned int quit; /* boolean */
char *user;
char *group;
- char *ipAddr;
+ vector_t listen_addrs;
#ifdef FILTER_ENABLE
char *filter;
unsigned int filter_url; /* boolean */