diff options
author | Michael Adam <obnox@samba.org> | 2013-11-07 11:00:19 +0100 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2013-11-09 13:34:33 +0100 |
commit | e82080a5f62991e2892b88dce108537f64960e55 (patch) | |
tree | aab2be1c8d65ae66eddb511a5bfc8605c56d219e /src/conf.h | |
parent | d0732f9adeb523422e755bfc11d03e9cbccc99f6 (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.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 */ |