diff options
author | Allan Sandfeld Jensen <allan.jensen@qt.io> | 2020-10-12 14:27:29 +0200 |
---|---|---|
committer | Allan Sandfeld Jensen <allan.jensen@qt.io> | 2020-10-13 09:35:20 +0000 |
commit | c30a6232df03e1efbd9f3b226777b07e087a1122 (patch) | |
tree | e992f45784689f373bcc38d1b79a239ebe17ee23 /chromium/third_party/google-closure-library/scripts/http | |
parent | 7b5b123ac58f58ffde0f4f6e488bcd09aa4decd3 (diff) | |
download | qtwebengine-chromium-85-based.tar.gz |
BASELINE: Update Chromium to 85.0.4183.14085-based
Change-Id: Iaa42f4680837c57725b1344f108c0196741f6057
Reviewed-by: Allan Sandfeld Jensen <allan.jensen@qt.io>
Diffstat (limited to 'chromium/third_party/google-closure-library/scripts/http')
-rwxr-xr-x | chromium/third_party/google-closure-library/scripts/http/simple_http_server.py | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/chromium/third_party/google-closure-library/scripts/http/simple_http_server.py b/chromium/third_party/google-closure-library/scripts/http/simple_http_server.py new file mode 100755 index 00000000000..1ed16dac550 --- /dev/null +++ b/chromium/third_party/google-closure-library/scripts/http/simple_http_server.py @@ -0,0 +1,44 @@ +#!/usr/bin/env python + +# Copyright 2018 The Closure Library Authors. All Rights Reserved. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS-IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +"""Simple HTTP server. +""" + +import SimpleHTTPServer +import SocketServer + +PORT = 8080 + + +# Simple server to respond to both POST and GET requests. POST requests will +# just respond as normal GETs. +class ServerHandler(SimpleHTTPServer.SimpleHTTPRequestHandler): + + def do_GET(self): + SimpleHTTPServer.SimpleHTTPRequestHandler.do_GET(self) + + def do_POST(self): + SimpleHTTPServer.SimpleHTTPRequestHandler.do_GET(self) + + +Handler = ServerHandler + +# Allows use to restart server immediately after restarting it. +SocketServer.ThreadingTCPServer.allow_reuse_address = True + +httpd = SocketServer.TCPServer(("", PORT), Handler) + +print "Serving at: http://%s:%s" % ("localhost", PORT) +httpd.serve_forever() |