Searched refs:backlog (Results 1 - 6 of 6) sorted by relevance
/device/soc/hisilicon/hi3861v100/sdk_liteos/third_party/lwip_sack/include/lwip/ |
H A D | tcp.h | 342 u8_t backlog; member 368 /** If this is set, a connection PCB has increased the backlog on its listener */ 760 ((struct tcp_pcb_listen *)(pcb))->backlog = (u8_t)((new_backlog) ? (new_backlog) : 1); } while (0) 776 struct tcp_pcb *tcp_listen_with_backlog_and_err(struct tcp_pcb *pcb, u8_t backlog, err_t *err); 778 struct tcp_pcb *tcp_listen_with_backlog(struct tcp_pcb *pcb, u8_t backlog);
|
H A D | sockets.h | 1478 * @param[in] backlog Defines the maximum length to which the queue of pending connections for sockfd may grow 1500 * - Maximum value of backlog is 16, and minimum value of backlog is 0. 1501 * - If backlog value is 0 or less than zero, backlog value of 1 is used. 1504 * - The listen() API supports multiple calls. If socket is already listening, it will update listen backlog. 1505 * - New backlog value shall be applicable only for new incoming connection requests. 1507 int lwip_listen(int sockfd, int backlog); 2467 #define listen(s, backlog) lwip_listen(s, backlog) [all...] |
H A D | api.h | 430 err_t netconn_listen_with_backlog(struct netconn *conn, u8_t backlog);
|
/device/soc/hisilicon/hi3861v100/sdk_liteos/third_party/lwip_sack/include/lwip/priv/ |
H A D | api_msg.h | 175 u8_t backlog; member
|
/device/soc/rockchip/common/sdk_linux/net/bluetooth/ |
H A D | sco.c | 621 static int sco_sock_listen(struct socket *sock, int backlog) in sco_sock_listen() argument 627 BT_DBG("sk %p backlog %d", sk, backlog); in sco_sock_listen() 648 sk->sk_max_ack_backlog = backlog; in sco_sock_listen()
|
H A D | l2cap_sock.c | 286 static int l2cap_sock_listen(struct socket *sock, int backlog) in l2cap_sock_listen() argument 292 BT_DBG("sk %p backlog %d", sk, backlog); in l2cap_sock_listen() 328 sk->sk_max_ack_backlog = backlog; in l2cap_sock_listen() 1498 /* Check for backlog size */ in l2cap_sock_new_connection_cb() 1500 BT_DBG("backlog full %d", parent->sk_ack_backlog); in l2cap_sock_new_connection_cb()
|
Completed in 15 milliseconds