Lines Matching refs:socknum
1816 process_message(u_int socknum) in process_message() argument
1824 if (socknum >= sockets_alloc) in process_message()
1825 fatal_f("sock %u >= allocated %u", socknum, sockets_alloc); in process_message()
1826 e = &sockets[socknum]; in process_message()
1834 socknum, e->fd, msg_len, AGENT_MAX_LEN); in process_message()
1852 debug_f("socket %u (fd=%d) type %d", socknum, e->fd, type); in process_message()
1958 handle_socket_read(u_int socknum) in handle_socket_read() argument
1967 fd = accept(sockets[socknum].fd, (struct sockaddr *)&sunaddr, &slen); in handle_socket_read()
1988 handle_conn_read(u_int socknum) in handle_conn_read() argument
1994 if ((len = read(sockets[socknum].fd, buf, sizeof(buf))) <= 0) { in handle_conn_read()
1999 socknum, sockets[socknum].fd, strerror(errno)); in handle_conn_read()
2003 if ((r = sshbuf_put(sockets[socknum].input, buf, len)) != 0) in handle_conn_read()
2007 if ((r = process_message(socknum)) == -1) in handle_conn_read()
2016 handle_conn_write(u_int socknum) in handle_conn_write() argument
2021 if (sshbuf_len(sockets[socknum].output) == 0) in handle_conn_write()
2023 if ((len = write(sockets[socknum].fd, in handle_conn_write()
2024 sshbuf_ptr(sockets[socknum].output), in handle_conn_write()
2025 sshbuf_len(sockets[socknum].output))) <= 0) { in handle_conn_write()
2030 socknum, sockets[socknum].fd, strerror(errno)); in handle_conn_write()
2034 if ((r = sshbuf_consume(sockets[socknum].output, len)) != 0) in handle_conn_write()
2043 u_int socknum, activefds = npfd; in after_poll() local
2049 for (socknum = 0; socknum < sockets_alloc; socknum++) { in after_poll()
2050 if (sockets[socknum].type != AUTH_SOCKET && in after_poll()
2051 sockets[socknum].type != AUTH_CONNECTION) in after_poll()
2053 if (pfd[i].fd == sockets[socknum].fd) in after_poll()
2056 if (socknum >= sockets_alloc) { in after_poll()
2061 switch (sockets[socknum].type) { in after_poll()
2070 if (handle_socket_read(socknum) == 0) in after_poll()
2075 handle_conn_read(socknum) != 0) in after_poll()
2078 handle_conn_write(socknum) != 0) { in after_poll()
2082 close_socket(&sockets[socknum]); in after_poll()