Searched refs:tcp_pcb (Results 1 – 11 of 11) sorted by relevance
/lk-master/external/lib/lwip/include/lwip/ |
A D | tcp.h | 49 struct tcp_pcb; 72 typedef err_t (*tcp_recv_fn)(void *arg, struct tcp_pcb *tpcb, 86 typedef err_t (*tcp_sent_fn)(void *arg, struct tcp_pcb *tpcb, 168 struct tcp_pcb { struct 172 TCP_PCB_COMMON(struct tcp_pcb); 307 err_t lwip_tcp_event(void *arg, struct tcp_pcb *pcb, 316 struct tcp_pcb * tcp_new (void); 347 struct tcp_pcb * tcp_listen_with_backlog(struct tcp_pcb *pcb, u8_t backlog); 350 void tcp_abort (struct tcp_pcb *pcb); 351 err_t tcp_close (struct tcp_pcb *pcb); [all …]
|
A D | tcp_impl.h | 66 struct tcp_pcb * tcp_alloc (u8_t prio); 69 void tcp_rexmit (struct tcp_pcb *pcb); 306 extern struct tcp_pcb *tcp_input_pcb; 313 struct tcp_pcb *pcbs; 315 extern struct tcp_pcb *tcp_bound_pcbs; 415 struct tcp_pcb *tcp_pcb_copy(struct tcp_pcb *pcb); 416 void tcp_pcb_purge(struct tcp_pcb *pcb); 417 void tcp_pcb_remove(struct tcp_pcb **pcblist, struct tcp_pcb *pcb); 439 err_t tcp_send_fin(struct tcp_pcb *pcb); 450 void tcp_keepalive(struct tcp_pcb *pcb); [all …]
|
A D | api.h | 124 struct tcp_pcb; 142 struct tcp_pcb *tcp;
|
A D | memp_std.h | 42 LWIP_MEMPOOL(TCP_PCB, MEMP_NUM_TCP_PCB, sizeof(struct tcp_pcb), "TCP_PCB")
|
/lk-master/external/lib/lwip/core/ |
A D | tcp.c | 437 struct tcp_pcb *cpcb; in tcp_bind() 518 struct tcp_pcb * 651 struct tcp_pcb *pcb; in tcp_new_port() 725 struct tcp_pcb *cpcb; in tcp_connect() 1048 struct tcp_pcb *pcb; in tcp_fasttmr() 1277 struct tcp_pcb * 1280 struct tcp_pcb *pcb; in tcp_alloc() 1362 struct tcp_pcb * 1538 tcp_pcb_remove(struct tcp_pcb **pcblist, struct tcp_pcb *pcb) in tcp_pcb_remove() 1699 struct tcp_pcb *pcb; in tcp_debug_print_pcbs() [all …]
|
A D | tcp_out.c | 125 tcp_send_fin(struct tcp_pcb *pcb) in tcp_send_fin() 294 tcp_write_checks(struct tcp_pcb *pcb, u16_t len) in tcp_write_checks() 722 tcp_enqueue_flags(struct tcp_pcb *pcb, u8_t flags) in tcp_enqueue_flags() 828 tcp_build_timestamp_option(struct tcp_pcb *pcb, u32_t *opts) in tcp_build_timestamp_option() 842 tcp_send_empty_ack(struct tcp_pcb *pcb) in tcp_send_empty_ack() 898 tcp_output(struct tcp_pcb *pcb) in tcp_output() 1239 tcp_rexmit_rto(struct tcp_pcb *pcb) in tcp_rexmit_rto() 1275 tcp_rexmit(struct tcp_pcb *pcb) in tcp_rexmit() 1321 tcp_rexmit_fast(struct tcp_pcb *pcb) in tcp_rexmit_fast() 1364 tcp_keepalive(struct tcp_pcb *pcb) in tcp_keepalive() [all …]
|
A D | tcp_in.c | 72 struct tcp_pcb *tcp_input_pcb; 75 static err_t tcp_process(struct tcp_pcb *pcb); 76 static void tcp_receive(struct tcp_pcb *pcb); 94 struct tcp_pcb *pcb, *prev; in tcp_input() 97 struct tcp_pcb *lpcb_prev = NULL; in tcp_input() 235 prev = (struct tcp_pcb *)lpcb; in tcp_input() 442 struct tcp_pcb *npcb; in tcp_listen_input() 529 tcp_timewait_input(struct tcp_pcb *pcb) in tcp_timewait_input() 575 tcp_process(struct tcp_pcb *pcb) in tcp_process() 847 tcp_receive(struct tcp_pcb *pcb) in tcp_receive() [all …]
|
A D | netif.c | 328 struct tcp_pcb *pcb; in netif_set_ipaddr() 345 struct tcp_pcb *next = pcb->next; in netif_set_ipaddr()
|
A D | pbuf.c | 120 struct tcp_pcb* pcb; in pbuf_free_ooseq()
|
/lk-master/external/lib/lwip/api/ |
A D | api_msg.c | 216 recv_tcp(void *arg, struct tcp_pcb *pcb, struct pbuf *p, err_t err) 277 poll_tcp(void *arg, struct tcp_pcb *pcb) 313 sent_tcp(void *arg, struct tcp_pcb *pcb, u16_t len) 415 struct tcp_pcb *pcb; 432 accept_function(void *arg, struct tcp_pcb *newpcb, err_t err) 460 struct tcp_pcb* pcb = newconn->pcb.tcp; 937 do_connected(void *arg, struct tcp_pcb *pcb, err_t err) 1074 struct tcp_pcb* lpcb = tcp_listen_with_backlog(msg->conn->pcb.tcp, msg->msg.lb.backlog); 1076 struct tcp_pcb* lpcb = tcp_listen(msg->conn->pcb.tcp);
|
/lk-master/external/lib/lwip/core/snmp/ |
A D | mib2.c | 3689 struct tcp_pcb *pcb = tcp_active_pcbs; in tcp_get_value()
|
Completed in 25 milliseconds