-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtcpCli.py
30 lines (23 loc) · 813 Bytes
/
tcpCli.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
import socket
import sys
# Create a TCP/IP socket
sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
# Connect the socket to the port where the server is listening
server_address = ('localhost', 8081)
print ('connecting to %s port %s' % server_address, file = sys.stderr)
sock.connect(server_address)
try:
# Send data
message = 'This is the message. It will be repeated.'
print ('sending "%s"' % message, file = sys.stderr)
sock.sendall(message)
# 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 ('received "%s"' % data, file = sys.stderr)
finally:
print ('closing socket', file = sys.stderr)
sock.close()