-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsocketclient.py
More file actions
30 lines (23 loc) · 813 Bytes
/
socketclient.py
File metadata and controls
30 lines (23 loc) · 813 Bytes
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
import socket
import sys
# Connect the socket to the port where the server is listening
server_address = ('localhost', 11002)
print >>sys.stderr, 'connecting to %s port %s' % server_address
while True:
# Create a TCP/IP socket
sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
sock.connect(server_address)
print >>sys.stderr, 'Start messaging!'
try:
# get message
message = raw_input()
# Look for the response
amount_received = 0
amount_expected = len(message)
while amount_received < amount_expected:
data = sock.recv(16)
amount_received += len(data)
print >>sys.stderr, 'received: "%s"' % data
finally:
print >>sys.stderr, 'closing socket'
sock.close()