|
@ -4,17 +4,21 @@ import socket; |
|
|
import sys; |
|
|
import sys; |
|
|
|
|
|
|
|
|
def init_socket(): |
|
|
def init_socket(): |
|
|
# Create a TCP/IP socket |
|
|
|
|
|
|
|
|
# Creates a TCP/IP socket |
|
|
# socket type .AF_INET is the Internet address family for IPv4. |
|
|
# socket type .AF_INET is the Internet address family for IPv4. |
|
|
# .SOCK_STREAM is the socket type for TCP. |
|
|
# .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 |
|
|
# 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 |
|
|
# Listen for incoming connections |
|
|
sock.listen(1) |
|
|
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(): |
|
|
def check_bridge_socket(): |
|
|
evt = None |
|
|
evt = None |
|
|