circuitpython/examples/network
Paul Sokolovsky e3f0f31e07 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.
2016-07-10 23:01:52 +03:00
..
http_client.py examples/network/: Use getaddrinfo() result in easy way. 2016-05-03 00:45:37 +03:00
http_client_ssl.py examples/network/: Use getaddrinfo() result in easy way. 2016-05-03 00:45:37 +03:00
http_server.py examples/http_server*: Update for buffered-like streams (read line by line). 2016-07-10 23:01:52 +03:00
http_server_ssl.py examples/http_server*: Update for buffered-like streams (read line by line). 2016-07-10 23:01:52 +03:00