child: add addr argument to child_listening_sock().
Signed-off-by: Michael Adam <obnox@samba.org>
This commit is contained in:
parent
2bd919f01e
commit
070d621534
@ -464,9 +464,9 @@ void child_kill_children (int sig)
|
||||
}
|
||||
}
|
||||
|
||||
int child_listening_sock (uint16_t port)
|
||||
int child_listening_sock (const char *addr, uint16_t port)
|
||||
{
|
||||
listenfd = listen_sock (config.ipAddr, port);
|
||||
listenfd = listen_sock (addr, port);
|
||||
return listenfd;
|
||||
}
|
||||
|
||||
|
@ -30,7 +30,7 @@ typedef enum {
|
||||
} child_config_t;
|
||||
|
||||
extern short int child_pool_create (void);
|
||||
extern int child_listening_sock (uint16_t port);
|
||||
extern int child_listening_sock (const char *addr, uint16_t port);
|
||||
extern void child_close_sock (void);
|
||||
extern void child_main_loop (void);
|
||||
extern void child_kill_children (int sig);
|
||||
|
@ -430,7 +430,7 @@ main (int argc, char **argv)
|
||||
#endif /* FILTER_ENABLE */
|
||||
|
||||
/* Start listening on the selected port. */
|
||||
if (child_listening_sock (config.port) < 0) {
|
||||
if (child_listening_sock (config.ipAddr, config.port) < 0) {
|
||||
fprintf (stderr, "%s: Could not create listening socket.\n",
|
||||
argv[0]);
|
||||
exit (EX_OSERR);
|
||||
|
Loading…
Reference in New Issue
Block a user