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.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.py')
| -rw-r--r-- | examples/network/http_server.py | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/examples/network/http_server.py b/examples/network/http_server.py index 80dfc5db0..147bf5122 100644 --- a/examples/network/http_server.py +++ b/examples/network/http_server.py @@ -34,7 +34,13 @@ def main(use_stream=False): if use_stream: # MicroPython socket objects support stream (aka file) interface # directly. - print(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) client_s.write(CONTENT % counter) else: print(client_s.recv(4096)) |
