We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1b8ff4e commit 43dd21cCopy full SHA for 43dd21c
examples/wiznet5k_simpleserver.py
@@ -28,8 +28,8 @@
28
server.bind((server_ip, server_port)) # Bind to IP and Port
29
server.listen() # Begin listening for incoming clients
30
31
-conn, addr = server.accept() # Wait for a connection from a client.
32
while True:
+ conn, addr = server.accept() # Wait for a connection from a client.
33
with conn:
34
data = conn.recv(1024)
35
if data: # Wait for receiving data
0 commit comments