-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.py
25 lines (22 loc) · 897 Bytes
/
server.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
#
# server.py
#
import config
import socket
from threading import Thread
def client_thread(client_socket, address):
print("Connection from {}:{}.").format(address[0], address[1])
data = client_socket.recv(config.BUFFER_SIZE)
message = data.decode(config.MESSAGE_ENCODING)
if message:
print("Client at {}:{} says \"{}\".").format(address[0], address[1], message)
if __name__ == '__main__':
# Create socket, bind to port, and start listening.
server_socket = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
server_socket.bind((config.SERVER_HOSTNAME, config.SERVER_PORT))
server_socket.listen(config.SERVER_MAX_CONN_QUEUE)
# Receive connections and pass off to new threads.
while True:
(client_socket, address) = server_socket.accept()
Thread(target=client_thread, args=(client_socket, address)).start()
server_socket.close()