diff options
author | 2017-01-04 16:15:57 +0100 | |
---|---|---|
committer | 2017-01-04 16:15:57 +0100 | |
commit | 63e3f487751eb096152e6e6bd90d8b47643a496b (patch) | |
tree | 3e42b162973ac8153a261c1a1351fbae4b09e748 /src/emu/emuopts.cpp | |
parent | 47c4f47bd40def91566dda49cc378d4ae0d63e37 (diff) |
Added initial HTTP/HTTPS webserver/websocket server support (nw)
Diffstat (limited to 'src/emu/emuopts.cpp')
-rw-r--r-- | src/emu/emuopts.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/emu/emuopts.cpp b/src/emu/emuopts.cpp index 0e5305f33d1..b6463a99f9d 100644 --- a/src/emu/emuopts.cpp +++ b/src/emu/emuopts.cpp @@ -203,6 +203,12 @@ const options_entry emu_options::s_option_entries[] = { OPTION_PLUGIN, nullptr, OPTION_STRING, "list of plugins to enable" }, { OPTION_NO_PLUGIN, nullptr, OPTION_STRING, "list of plugins to disable" }, { OPTION_LANGUAGE ";lang", "English", OPTION_STRING, "display language" }, + + { nullptr, nullptr, OPTION_HEADER, "HTTP SERVER OPTIONS" }, + { OPTION_HTTP, "0", OPTION_BOOLEAN, "HTTP server enable" }, + { OPTION_HTTP_PORT, "8080", OPTION_INTEGER, "HTTP server port" }, + { OPTION_HTTP_ROOT, "web", OPTION_STRING, "HTTP server document root" }, + { nullptr } }; |