Skip to content

Commit ef2ffc0

Browse files
committed
esp8266/scripts/webrepl: Print client address for incoming connections.
1 parent c888831 commit ef2ffc0

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

esp8266/scripts/webrepl.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ def setup_conn(port):
2828
def accept_conn(listen_sock):
2929
global client_s
3030
cl, remote_addr = listen_sock.accept()
31+
print("\nWebREPL connection from:", remote_addr)
3132
client_s = cl
3233
websocket_helper.server_handshake(cl)
3334
ws = websocket.websocket(cl, True)

0 commit comments

Comments
 (0)