diff options
| author | Paul Sokolovsky | 2016-07-10 23:01:52 +0300 |
|---|---|---|
| committer | Paul Sokolovsky | 2016-07-10 23:01:52 +0300 |
| commit | e3f0f31e07091642a938d7f243f5803588e409b1 (patch) | |
| tree | 41fcfced25b4110578dc84aa526d3ed31968fdaa /examples/network/http_server_ssl.py | |
| parent | 1459a8d5c9b29c78da2cf5c7cf3c37ab03b34b8e (diff) | |
examples/http_server*: Update for buffered-like streams (read line by line).
Since "read-exactly" stream refactor, where stream.read(N) will read
exactly N bytes (unless EOF), http_server* examples can't any longer do
client_socket.read(4096) and expect to get full request (it will block
on HTTP/1.1 client). Instead, read request line by line, as the HTTP
protocol requires.
Diffstat (limited to 'examples/network/http_server_ssl.py')
| -rw-r--r-- | examples/network/http_server_ssl.py | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/examples/network/http_server_ssl.py b/examples/network/http_server_ssl.py index 04e091344..9a69ca9d4 100644 --- a/examples/network/http_server_ssl.py +++ b/examples/network/http_server_ssl.py @@ -42,8 +42,13 @@ def main(use_stream=True): # next request they issue will likely be more well-behaving and # will succeed. try: - req = client_s.read(4096) + req = client_s.readline() print(req) + while True: + h = client_s.readline() + if h == b"" or h == b"\r\n": + break + print(h) if req: client_s.write(CONTENT % counter) except Exception as e: |
