Searched refs:netconn (Results 1 – 6 of 6) sorted by relevance
/lk-master/external/lib/lwip/include/lwip/ |
A D | api.h | 127 struct netconn; 134 struct netconn { struct 217 err_t netconn_delete(struct netconn *conn); 221 err_t netconn_getaddr(struct netconn *conn, ip_addr_t *addr, 228 err_t netconn_disconnect (struct netconn *conn); 231 err_t netconn_accept(struct netconn *conn, struct netconn **new_conn); 232 err_t netconn_recv(struct netconn *conn, struct netbuf **new_buf); 234 void netconn_recved(struct netconn *conn, u32_t length); 235 err_t netconn_sendto(struct netconn *conn, struct netbuf *buf, 237 err_t netconn_send(struct netconn *conn, struct netbuf *buf); [all …]
|
A D | api_msg.h | 65 struct netconn *conn; 168 struct netconn* netconn_alloc(enum netconn_type t, netconn_callback callback); 169 void netconn_free(struct netconn *conn);
|
A D | memp_std.h | 56 LWIP_MEMPOOL(NETCONN, MEMP_NUM_NETCONN, sizeof(struct netconn), "NETCONN")
|
/lk-master/external/lib/lwip/api/ |
A D | api_lib.c | 67 struct netconn* 70 struct netconn *conn; in netconn_new_with_proto_and_callback() 103 netconn_delete(struct netconn *conn) in netconn_delete() 217 netconn_disconnect(struct netconn *conn) in netconn_disconnect() 277 netconn_accept(struct netconn *conn, struct netconn **new_conn) in netconn_accept() 280 struct netconn *newconn; in netconn_accept() 342 netconn_recv_data(struct netconn *conn, void **new_buf) in netconn_recv_data() 517 netconn_recved(struct netconn *conn, u32_t length) in netconn_recved() 567 netconn_send(struct netconn *conn, struct netbuf *buf) in netconn_send() 689 netconn_close(struct netconn *conn) in netconn_close() [all …]
|
A D | api_msg.c | 83 struct netconn *conn; in recv_raw() 148 struct netconn *conn; 218 struct netconn *conn; 279 struct netconn *conn = (struct netconn *)arg; 315 struct netconn *conn = (struct netconn *)arg; 349 struct netconn *conn; 435 struct netconn *conn = (struct netconn *)arg; 571 struct netconn* 574 struct netconn *conn; 718 struct netconn *newconn = (struct netconn *)mem; [all …]
|
A D | sockets.c | 66 struct netconn *conn; 175 static void event_callback(struct netconn *conn, enum netconn_evt evt, u16_t len); 243 alloc_socket(struct netconn *newconn, int accepted) in alloc_socket() 315 struct netconn *newconn; in lwip_accept() 950 struct netconn *conn; 1247 event_callback(struct netconn *conn, enum netconn_evt evt, u16_t len)
|
Completed in 11 milliseconds