Lines Matching refs:port
80 host, port = self.server_address[:2]
86 'port': port,
131 def start_server(host, port, root):
135 server_address = (host, port)
138 print('Starting pycache daemon at {}:{}'.format(host, port))
143 start_server(host, port + 2, root)
155 return data.get('host'), data.get('port')
160 host, port = get_pyd()
161 conn = client.HTTPConnection(host, port)
170 host, port = get_pyd()
171 conn = client.HTTPConnection(host, port)
180 host, port = get_pyd()
181 conn = client.HTTPConnection(host, port)
191 parser.add_argument('--port',
193 help='which port to listen')
209 start_server(LOCALHOST, int(options.port), options.root)