-
Notifications
You must be signed in to change notification settings - Fork 0
/
sk.py
68 lines (53 loc) · 1.54 KB
/
sk.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
# # first of all import the socket library
# import socket
# # next create a socket object
# s = socket.socket()
# print ("Socket successfully created")
# # reserve a port on your computer in our
# # case it is 12345 but it can be anything
# port = 50000
# # Next bind to the port
# # we have not typed any ip in the ip field
# # instead we have inputted an empty string
# # this makes the server listen to requests
# # coming from other computers on the network
# s.bind(('', port))
# print ("socket binded to %s" %(port))
# # put the socket into listening mode
# s.listen(5)
# print ("socket is listening")
# # a forever loop until we interrupt it or
# # an error occurs
# while True:
# # Establish connection with client.
# c, addr = s.accept()
# print ('Got connection from', addr )
# # send a thank you message to the client. encoding to send byte type.
# c.send('Thank you for connecting'.encode())
# # Close the connection with the client
# c.close()
# # Breaking once connection closed
# break
# Now multi threaded client
import socket
import sys
cs= socket.socket()
host = '127.0.0.1'
port = 50000
try:
cs.connect((host, port))
print("Connected to server")
except:
print("Connection to server failed")
sys.exit()
response = cs.recv(1024).decode()
print(response)
while True:
print("Enter message to send to server")
message = input()
cs.send(message.encode())
data = cs.recv(1024).decode()
print("Server says: ", data)
if data == "bye":
break
cs.close()