Lines Matching defs:timeout_ms
1448 mux_client_read(int fd, struct sshbuf *b, size_t need, int timeout_ms)
1466 if (waitrfd(fd, &timeout_ms,
1538 mux_client_read_packet_timeout(int fd, struct sshbuf *m, int timeout_ms)
1547 if (mux_client_read(fd, queue, 4, timeout_ms) != 0) {
1556 if (mux_client_read(fd, queue, need, timeout_ms) != 0) {
1577 mux_client_hello_exchange(int fd, int timeout_ms)
1598 if (mux_client_read_packet_timeout(fd, m, timeout_ms) != 0) {
2246 int sock, timeout = options.connection_timeout, timeout_ms = -1;
2304 timeout_ms = timeout * 1000;
2306 if (mux_client_hello_exchange(sock, timeout_ms) != 0) {