Searched refs:sock (Results 1 – 7 of 7) sorted by relevance
| /lib/lwip/lwip/src/api/ |
| A D | sockets.c | 521 if (!sock) { in get_socket() 528 return sock; in get_socket() 672 if (!sock) { in lwip_accept() 764 if (!sock) { in lwip_bind() 819 if (!sock) { in lwip_close() 857 if (!sock) { in lwip_connect() 927 if (!sock) { in lwip_listen() 1245 if (!sock) { in lwip_recvfrom() 1336 if (!sock) { in lwip_recvmsg() 1431 if (!sock) { in lwip_send() [all …]
|
| /lib/lwip/lwip/contrib/apps/rtp/ |
| A D | rtp.c | 123 rtp_send_packets( int sock, struct sockaddr_in* to) in rtp_send_packets() argument 169 int sock; in rtp_send_thread() local 182 sock = lwip_socket(AF_INET, SOCK_DGRAM, 0); in rtp_send_thread() 183 if (sock >= 0) { in rtp_send_thread() 191 if (lwip_bind(sock, (struct sockaddr *)&local, sizeof(local)) == 0) { in rtp_send_thread() 201 rtp_send_packets( sock, &to); in rtp_send_thread() 207 lwip_close(sock); in rtp_send_thread() 218 int sock; in rtp_recv_thread() local 239 sock = lwip_socket(AF_INET, SOCK_DGRAM, 0); in rtp_recv_thread() 240 if (sock >= 0) { in rtp_recv_thread() [all …]
|
| /lib/lwip/lwip/contrib/apps/chargen/ |
| A D | chargen.c | 217 int sock; in chargen_thread() local 221 sock = lwip_accept(listenfd, &cliaddr, &clilen); in chargen_thread() 222 if (sock >= 0) { in chargen_thread() 223 lwip_close(sock); in chargen_thread()
|
| /lib/lwip/lwip/contrib/addons/tcp_md5/ |
| A D | tcp_md5.c | 474 tcp_md5_setsockopt_hook(struct lwip_sock *sock, int level, int optname, const void *optval, socklen… in tcp_md5_setsockopt_hook() argument 476 LWIP_ASSERT("sock != NULL", sock != NULL); in tcp_md5_setsockopt_hook() 484 …if (sock->conn && (NETCONNTYPE_GROUP(netconn_type(sock->conn)) == NETCONN_TCP) && (sock->conn->pcb… in tcp_md5_setsockopt_hook() 517 … tcp_ext_arg_set_callbacks(sock->conn->pcb.tcp, tcp_md5_extarg_id, &tcp_md5_ext_arg_callbacks); in tcp_md5_setsockopt_hook() 518 … info->next = (struct tcp_md5_conn_info *)tcp_ext_arg_get(sock->conn->pcb.tcp, tcp_md5_extarg_id); in tcp_md5_setsockopt_hook() 519 tcp_ext_arg_set(sock->conn->pcb.tcp, tcp_md5_extarg_id, info); in tcp_md5_setsockopt_hook()
|
| A D | README | 12 …#define LWIP_HOOK_SOCKETS_SETSOCKOPT(s, sock, level, optname, optval, optlen, err) tcp_md5_setsock…
|
| A D | tcp_md5.h | 72 int tcp_md5_setsockopt_hook(struct lwip_sock *sock, int level, int optname, const void *optval, u32…
|
| /lib/lwip/lwip/src/include/lwip/ |
| A D | opt.h | 3244 #define LWIP_HOOK_SOCKETS_SETSOCKOPT(s, sock, level, optname, optval, optlen, err) argument 3267 #define LWIP_HOOK_SOCKETS_GETSOCKOPT(s, sock, level, optname, optval, optlen, err) argument
|
Completed in 36 milliseconds