summaryrefslogtreecommitdiff
path: root/src/muniad.cc
diff options
context:
space:
mode:
authorBent Bisballe Nyeng <deva@aasimon.org>2012-03-23 15:25:08 +0100
committerBent Bisballe Nyeng <deva@aasimon.org>2012-03-23 15:25:08 +0100
commit924de64f8d4cbaba3b6ff728907656929d092f05 (patch)
tree8dc06cc0e3cda3cf3338007038abe8457b18a944 /src/muniad.cc
parent0ac826ad5a15d5b7b350959762181aa8cacacf0b (diff)
parentf7dc7c17af52e8300cb188c4fb3e4a8b1638e8f9 (diff)
Merge branch 'master' of https://git.oftal.dk/munia
Diffstat (limited to 'src/muniad.cc')
-rw-r--r--src/muniad.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/muniad.cc b/src/muniad.cc
index ab69456..4523d8a 100644
--- a/src/muniad.cc
+++ b/src/muniad.cc
@@ -64,6 +64,7 @@ static struct option options[] = {
{ "ssl", no_argument, NULL, 's' },
{ "killmask", no_argument, NULL, 'k' },
{ "interface", required_argument, NULL, 'i' },
+// { "dumpfile", required_argument, NULL, 'd'},
{ NULL, 0, 0, 0 }
};
@@ -81,6 +82,7 @@ int main(int argc, char **argv)
int opts = 0;
char interface_name[128] = "";
const char * interface = NULL;
+// std::string dumpfile;
fprintf(stderr, "Munia test server\n"
"(C) Copyright 2012 Bent Bisballe Nyeng (deva@aasimon.org)\n"
@@ -94,6 +96,8 @@ int main(int argc, char **argv)
case 's':
use_ssl = 1;
break;
+// case 'd':
+// dumpfile = optarg;
case 'k':
opts = LWS_SERVER_OPTION_DEFEAT_CLIENT_MASK;
break;