-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathBeyondListener.py
50 lines (35 loc) · 1.26 KB
/
BeyondListener.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
import socket
import sys
# Create a TCP/IP socket
sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
# Bind the socket to the port
server_address = ('192.168.1.131', 52024)
print (sys.stderr, 'starting up on %s port %s' % server_address)
sock.bind(server_address)
# Listen for incoming connections
sock.listen(1)
while True:
# Wait for a connection
print ('waiting for a connection')
connection, client_address = sock.accept()
try:
print ('connection from', client_address)
# Receive the data in small chunks and retransmit it
if True:
data = connection.recv(30).decode()
print ('received "%s"' % data)
if data=='circle':
print("wohho ")
elif data=='':
print ('no more data from', client_address)
elif data=='close':
print("Closing connection")
break
# print ('sending data back to the client')
# connection.sendall(data.encode())
#else:
# print ('no more data from', client_address)
# break
finally:
# Clean up the connection
connection.close()