Browse Source

Update 'server/NetGenieSrv.py'

master
Sana147 2 years ago
parent
commit
3fea4e5ee5
  1. 12
      server/NetGenieSrv.py

12
server/NetGenieSrv.py

@ -4,17 +4,21 @@ import socket;
import sys;
def init_socket():
# Create a TCP/IP socket
# Creates a TCP/IP socket
# socket type .AF_INET is the Internet address family for IPv4.
# .SOCK_STREAM is the socket type for TCP.
sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
debug_sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
# Bind the socket to the port 8000
server_address = ('localhost', 8000)
sock.bind(server_address)
debug_server_address = ('localhost', 8000)
sock.bind(debug_server_address)
# Listen for incoming connections
sock.listen(1)
while True:
# Wait for a connection
print >>sys.stderr, 'Waiting for a Connection'
connection, client_address = sock.accept()
def check_bridge_socket():
evt = None

Loading…
Cancel
Save