Moved manifest to root dir

This commit is contained in:
Nate Koenig 2012-09-21 12:58:15 -07:00
parent 8160b65e6c
commit 6a52f71e2c
2 changed files with 3 additions and 1 deletions

View File

@ -8,7 +8,7 @@ from xml.dom import minidom
import request_pb2
TCP_IP = '127.0.0.1'
TCP_PORT = 50198
TCP_PORT = 50199
BUFFER_SIZE = 1024
models = {}
@ -26,9 +26,11 @@ def read_manifest():
read_manifest()
print 'here'
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
s.bind((TCP_IP, TCP_PORT))
s.listen(1)
print 'here2'
conn, addr = s.accept()
print 'Connection address:', addr