diff options
author | Daniel Mack <github@zonque.org> | 2015-10-01 09:53:15 +0200 |
---|---|---|
committer | Daniel Mack <github@zonque.org> | 2015-10-01 09:53:15 +0200 |
commit | 2ce8d6080d4135ae8926fc783766c3dfbeb7a6b0 (patch) | |
tree | 6ffd2519d5623fa971709a856540daa2bf6dbe3e /src/journal-remote/journal-gatewayd.c | |
parent | e4c46dcede2cf41ebd0910dfb0788b23f1f6da45 (diff) | |
parent | ef08ced6b44d4f56477a6798e56ba5c5c9e0023f (diff) |
Merge pull request #1429 from poettering/dhcp-hostname
DHCP and journal remoting fix, as well as NEWS update
Diffstat (limited to 'src/journal-remote/journal-gatewayd.c')
-rw-r--r-- | src/journal-remote/journal-gatewayd.c | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/src/journal-remote/journal-gatewayd.c b/src/journal-remote/journal-gatewayd.c index 29df842277..b839e5979b 100644 --- a/src/journal-remote/journal-gatewayd.c +++ b/src/journal-remote/journal-gatewayd.c @@ -1010,7 +1010,22 @@ int main(int argc, char *argv[]) { { MHD_OPTION_END, 0, NULL }, { MHD_OPTION_END, 0, NULL }}; int opts_pos = 2; - int flags = MHD_USE_THREAD_PER_CONNECTION|MHD_USE_POLL|MHD_USE_DEBUG; + + /* We force MHD_USE_PIPE_FOR_SHUTDOWN here, in order + * to make sure libmicrohttpd doesn't use shutdown() + * on our listening socket, which would break socket + * re-activation. See + * + * https://lists.gnu.org/archive/html/libmicrohttpd/2015-09/msg00014.html + * https://github.com/systemd/systemd/pull/1286 + */ + + int flags = + MHD_USE_DEBUG | + MHD_USE_DUAL_STACK | + MHD_USE_PIPE_FOR_SHUTDOWN | + MHD_USE_POLL | + MHD_USE_THREAD_PER_CONNECTION; if (n > 0) opts[opts_pos++] = (struct MHD_OptionItem) |