aboutsummaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorAaron LI <aaronly.me@outlook.com>2016-11-23 15:56:12 +0800
committerAaron LI <aaronly.me@outlook.com>2016-11-23 15:56:12 +0800
commite0a8e62d8931694b184f9f3c1aeddc2d87b7c359 (patch)
treec381d245bcf17207af2903e9df8fd786d97dfaea /bin
parent8215466fbfce7c3c48dcde64f1d8093369c88a2c (diff)
downloadfg21sim-e0a8e62d8931694b184f9f3c1aeddc2d87b7c359.tar.bz2
webui: WSHandler: remove "check_origin()" and "hosts_allowed" option
Diffstat (limited to 'bin')
-rwxr-xr-xbin/fg21sim-webui16
1 files changed, 0 insertions, 16 deletions
diff --git a/bin/fg21sim-webui b/bin/fg21sim-webui
index 20d1a36..364b8fb 100755
--- a/bin/fg21sim-webui
+++ b/bin/fg21sim-webui
@@ -18,7 +18,6 @@ which is built using the Tornado_ web server and WebSocket_ protocol.
import os
import sys
import logging
-import ipaddress
import webbrowser
import tornado.ioloop
@@ -39,25 +38,12 @@ define("port", default=21127, type=int, help="Server listen port")
define("debug", default=False, help="Enable the debug mode")
define("no_browser", default=False,
help="Do not open the Web UI in a browser after startup")
-define("hosts_allowed", default="any", type=str,
- help=("Hosts allowed to access the Web UI. "
- "The network addresses should be given in CIDR format, e.g., "
- "'192.168.0.0/24'. "
- "Specify 'any' to allow any hosts. "
- "Note that the localhost/127.0.0.1 is always allowed."))
def main():
options.logging = None
parse_command_line()
- # Validate the value of ``options.hosts_allowed``
- if options.hosts_allowed.upper() != "ANY":
- try:
- ipaddress.ip_network(options.hosts_allowed)
- except ValueError as e:
- raise ValueError("Option 'hosts_allowed' invalid: " + str(e))
-
if options.host == "":
options.host = "0.0.0.0"
@@ -80,8 +66,6 @@ def main():
# Open the Web UI in a new browser tab
webbrowser.open_new_tab(access_url)
- logger.info("Hosts allowed to access the Web UI: {0}".format(
- options.hosts_allowed))
tornado.ioloop.IOLoop.current().start()