From: Zbigniew Jędrzejewski-Szmek Date: Sun, 25 Nov 2012 22:21:22 +0000 (+0100) Subject: journal-gatewayd: unify two code paths X-Git-Tag: v198~483 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=c54ff8e3586adec9e21c525bf0fa1fa0b73006d6;p=elogind.git journal-gatewayd: unify two code paths In preparation for adding more options, split out the option handling code. --- diff --git a/src/journal/journal-gatewayd.c b/src/journal/journal-gatewayd.c index 63d974477..9c3321882 100644 --- a/src/journal/journal-gatewayd.c +++ b/src/journal/journal-gatewayd.c @@ -879,22 +879,22 @@ int main(int argc, char *argv[]) { } else if (n > 1) { log_error("Can't listen on more than one socket."); goto finish; - } else if (n > 0) { - d = MHD_start_daemon( - MHD_USE_THREAD_PER_CONNECTION|MHD_USE_POLL|MHD_USE_DEBUG, - 19531, - NULL, NULL, - request_handler, NULL, - MHD_OPTION_LISTEN_SOCKET, SD_LISTEN_FDS_START, - MHD_OPTION_NOTIFY_COMPLETED, request_meta_free, NULL, - MHD_OPTION_END); } else { + struct MHD_OptionItem opts[] = { + { MHD_OPTION_NOTIFY_COMPLETED, + (intptr_t) request_meta_free, NULL }, + { MHD_OPTION_END, 0, NULL }, + { MHD_OPTION_END, 0, NULL }}; + if (n > 0) + opts[1] = (struct MHD_OptionItem) + {MHD_OPTION_LISTEN_SOCKET, SD_LISTEN_FDS_START, NULL}; + d = MHD_start_daemon( - MHD_USE_DEBUG|MHD_USE_THREAD_PER_CONNECTION|MHD_USE_POLL, + MHD_USE_THREAD_PER_CONNECTION|MHD_USE_POLL|MHD_USE_DEBUG, 19531, NULL, NULL, request_handler, NULL, - MHD_OPTION_NOTIFY_COMPLETED, request_meta_free, NULL, + MHD_OPTION_ARRAY, opts, MHD_OPTION_END); }