Home
last modified time | relevance | path

Searched refs:ws_to (Results 1 – 4 of 4) sorted by relevance

/dports/devel/py-buildbot/buildbot-3.4.1/buildbot/scripts/
H A Ddevproxy.py94 async def ws_forward(ws_from, ws_to): argument
96 if ws_to.closed:
97 await ws_to.close(code=ws_to.close_code, message=msg.extra)
100 await ws_to.send_str(msg.data)
102 await ws_to.send_bytes(msg.data)
104 await ws_to.ping()
106 await ws_to.pong()
/dports/www/pound/Pound-2.8/
H A Dpound.h323 int ws_to; /* websocket time-out */ member
H A Dconfig.c99 static int ws_to = 600; variable
255 res->ws_to = is_emergency? 120: ws_to; in parse_be()
307 res->ws_to = atoi(lin + matches[1].rm_so); in parse_be()
1356 ws_to = atoi(lin + matches[1].rm_so); in parse_file()
H A Dhttp.c1620 … while (BIO_pending(cl) || BIO_pending(be) || poll(p, 2, cur_backend->ws_to * 1000) > 0) { in do_http()