Home | History | Annotate | Download | only in lxc

Lines Matching refs:port

40         port = httpd.socket.getsockname()[1]
52 condition=lambda: http_up(port),
55 url = 'http://127.0.0.1:{port}/{filename}'.format(
56 port=port, filename=os.path.basename(file_path))
65 def http_up(port):
66 """Checks for an http server on localhost:port.
68 @param port: The port to check.
71 utils.run('curl --head http://127.0.0.1:%d' % port)