diff options
Diffstat (limited to 'support/fcgistarter.c')
-rw-r--r-- | support/fcgistarter.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/support/fcgistarter.c b/support/fcgistarter.c index 2e2c3e56..9cfda51a 100644 --- a/support/fcgistarter.c +++ b/support/fcgistarter.c @@ -133,6 +133,11 @@ int main(int argc, const char * const argv[]) exit_error(rv, "apr_socket_create"); } + rv = apr_socket_opt_set(skt, APR_SO_REUSEADDR, 1); + if (rv) { + exit_error(rv, "apr_socket_opt_set(APR_SO_REUSEADDR)"); + } + rv = apr_socket_bind(skt, skaddr); if (rv) { exit_error(rv, "apr_socket_bind"); |