/third_party/lwip/src/core/ |
D | altcp_tcp.c | 70 static void altcp_tcp_setup(struct altcp_pcb *conn, struct tcp_pcb *tpcb); 74 altcp_tcp_accept(void *arg, struct tcp_pcb *new_tpcb, err_t err) in altcp_tcp_accept() 90 altcp_tcp_connected(void *arg, struct tcp_pcb *tpcb, err_t err) in altcp_tcp_connected() 103 altcp_tcp_recv(void *arg, struct tcp_pcb *tpcb, struct pbuf *p, err_t err) in altcp_tcp_recv() 120 altcp_tcp_sent(void *arg, struct tcp_pcb *tpcb, u16_t len) in altcp_tcp_sent() 133 altcp_tcp_poll(void *arg, struct tcp_pcb *tpcb) in altcp_tcp_poll() 161 altcp_tcp_remove_callbacks(struct tcp_pcb *tpcb) in altcp_tcp_remove_callbacks() 173 altcp_tcp_setup_callbacks(struct altcp_pcb *conn, struct tcp_pcb *tpcb) in altcp_tcp_setup_callbacks() 186 altcp_tcp_setup(struct altcp_pcb *conn, struct tcp_pcb *tpcb) in altcp_tcp_setup() 198 struct tcp_pcb *tpcb = tcp_new_ip_type(ip_type); in altcp_tcp_new_ip_type() [all …]
|
D | tcp.c | 174 struct tcp_pcb *tcp_bound_pcbs; 179 struct tcp_pcb *tcp_active_pcbs; 181 struct tcp_pcb *tcp_tw_pcbs; 184 struct tcp_pcb **const tcp_pcb_lists[] = {&tcp_listen_pcbs.pcbs, &tcp_bound_pcbs, 195 static err_t tcp_close_shutdown_fin(struct tcp_pcb *pcb); 201 void set_tcp_pcb_net_group(struct tcp_pcb *pcb, struct net_group *group) in set_tcp_pcb_net_group() 206 struct net_group *get_net_group_from_tcp_pcb(const struct tcp_pcb *pcb) in get_net_group_from_tcp_pcb() 224 tcp_free(struct tcp_pcb *pcb) in tcp_free() 235 tcp_free_listen(struct tcp_pcb *pcb) in tcp_free_listen() 264 tcp_set_timer_tick_by_persist(struct tcp_pcb *pcb, u32_t tick) in tcp_set_timer_tick_by_persist() [all …]
|
D | tcp_in.c | 88 struct tcp_pcb *tcp_input_pcb; 91 static err_t tcp_process(struct tcp_pcb *pcb); 92 static void tcp_receive(struct tcp_pcb *pcb); 93 static void tcp_parseopt(struct tcp_pcb *pcb); 96 static void tcp_timewait_input(struct tcp_pcb *pcb); 98 static int tcp_input_delayed_close(struct tcp_pcb *pcb); 101 static void tcp_add_sack(struct tcp_pcb *pcb, u32_t left, u32_t right); 102 static void tcp_remove_sacks_lt(struct tcp_pcb *pcb, u32_t seq); 104 static void tcp_remove_sacks_gt(struct tcp_pcb *pcb, u32_t seq); 120 struct tcp_pcb *pcb, *prev; [all …]
|
D | tcp_out.c | 128 static err_t tcp_output_segment(struct tcp_seg *seg, struct tcp_pcb *pcb, struct netif *netif); 132 tcp_route(const struct tcp_pcb *pcb, const ip_addr_t *src, const ip_addr_t *dst) in tcp_route() 170 tcp_create_segment(const struct tcp_pcb *pcb, struct pbuf *p, u8_t hdrflags, u32_t seqno, u8_t optf… in tcp_create_segment() 238 u16_t *oversize, const struct tcp_pcb *pcb, u8_t apiflags, in tcp_pbuf_prealloc() 317 tcp_write_checks(struct tcp_pcb *pcb, u16_t len) in tcp_write_checks() 402 tcp_write(struct tcp_pcb *pcb, const void *arg, u16_t len, u8_t apiflags) in tcp_write() 839 tcp_split_unsent_seg(struct tcp_pcb *pcb, u16_t split) in tcp_split_unsent_seg() 1014 tcp_send_fin(struct tcp_pcb *pcb) in tcp_send_fin() 1045 tcp_enqueue_flags(struct tcp_pcb *pcb, u8_t flags) in tcp_enqueue_flags() 1152 tcp_build_timestamp_option(const struct tcp_pcb *pcb, u32_t *opts) in tcp_build_timestamp_option() [all …]
|
/third_party/lwip/src/include/lwip/ |
D | tcp.h | 58 struct tcp_pcb; 70 typedef err_t (*tcp_accept_fn)(void *arg, struct tcp_pcb *newpcb, err_t err); 82 typedef err_t (*tcp_recv_fn)(void *arg, struct tcp_pcb *tpcb, 96 typedef err_t (*tcp_sent_fn)(void *arg, struct tcp_pcb *tpcb, 108 typedef err_t (*tcp_poll_fn)(void *arg, struct tcp_pcb *tpcb); 134 typedef err_t (*tcp_connected_fn)(void *arg, struct tcp_pcb *tpcb, err_t err); 182 …(*tcp_extarg_callback_passive_open_fn)(u8_t id, struct tcp_pcb_listen *lpcb, struct tcp_pcb *cpcb); 242 struct tcp_pcb { struct 246 TCP_PCB_COMMON(struct tcp_pcb); 402 err_t lwip_tcp_event(void *arg, struct tcp_pcb *pcb, argument [all …]
|
/third_party/lwip/src/include/lwip/priv/ |
D | tcp_priv.h | 79 struct tcp_pcb * tcp_alloc (u8_t prio); 80 void tcp_free (struct tcp_pcb *pcb); 81 void tcp_abandon (struct tcp_pcb *pcb, int reset); 82 err_t tcp_send_empty_ack(struct tcp_pcb *pcb); 83 err_t tcp_rexmit (struct tcp_pcb *pcb); 84 err_t tcp_rexmit_rto_prepare(struct tcp_pcb *pcb); 85 void tcp_rexmit_rto_commit(struct tcp_pcb *pcb); 86 void tcp_rexmit_rto (struct tcp_pcb *pcb); 87 void tcp_rexmit_fast (struct tcp_pcb *pcb); 88 u32_t tcp_update_rcv_ann_wnd(struct tcp_pcb *pcb); [all …]
|
/third_party/lwip/ |
D | 0030-refactor-tcp-new-port.patch | 20 +static u16_t tcp_new_port(struct tcp_pcb *pcb); 25 static err_t tcp_close_shutdown_fin(struct tcp_pcb *pcb); 42 @@ -237,6 +250,7 @@ tcp_free(struct tcp_pcb *pcb) 50 @@ -746,7 +760,11 @@ tcp_bind(struct tcp_pcb *pcb, const ip_addr_t *ipaddr, u16_t port) 62 @@ -1057,33 +1075,43 @@ tcp_recved(struct tcp_pcb *pcb, u16_t len) 68 +tcp_new_port(struct tcp_pcb *pcb) 77 - struct tcp_pcb *pcb; 125 @@ -1169,7 +1197,11 @@ tcp_connect(struct tcp_pcb *pcb, const ip_addr_t *ipaddr, u16_t port, 137 @@ -1196,10 +1228,6 @@ tcp_connect(struct tcp_pcb *pcb, const ip_addr_t *ipaddr, u16_t port, 148 @@ -1227,6 +1255,10 @@ tcp_connect(struct tcp_pcb *pcb, const ip_addr_t *ipaddr, u16_t port, [all …]
|
D | 0010-fix-the-incomplete-release-of-the-conntable.patch | 17 tcp_free(struct tcp_pcb *pcb) 25 @@ -943,6 +946,11 @@ tcp_listen_with_backlog_and_err(struct tcp_pcb *pcb, u8_t backlog, err_t *err) 37 @@ -2263,6 +2271,10 @@ tcp_pcb_remove(struct tcp_pcb **pcblist, struct tcp_pcb *pcb) 60 -static inline int need_vdev_reg(struct tcp_pcb *pcb_list, const struct tcp_pcb *pcb) 61 +static inline void vdev_unreg_done(const struct tcp_pcb *pcb) 87 @@ -414,12 +403,6 @@ static inline int need_vdev_reg(struct tcp_pcb *pcb_list, const struct tcp_pcb… 97 struct tcp_pcb *tcp_tmp_pcb; \ 100 @@ -512,12 +495,6 @@ static inline int need_vdev_reg(struct tcp_pcb *pcb_list, const struct tcp_pcb…
|
D | 0041-optimite-pcb-list-limit-send-size-and-ack-now.patch | 19 @@ -2297,6 +2297,7 @@ tcp_pcb_purge(struct tcp_pcb *pcb) 31 @@ -976,8 +976,14 @@ tcp_process(struct tcp_pcb *pcb) 46 @@ -1393,6 +1399,8 @@ tcp_receive(struct tcp_pcb *pcb) 55 @@ -1400,6 +1408,8 @@ tcp_receive(struct tcp_pcb *pcb) 64 @@ -1736,7 +1746,11 @@ tcp_receive(struct tcp_pcb *pcb) 81 @@ -631,11 +631,7 @@ tcp_write(struct tcp_pcb *pcb, const void *arg, u16_t len, u8_t apiflags) 94 @@ -851,6 +847,9 @@ tcp_write(struct tcp_pcb *pcb, const void *arg, u16_t len, u8_t apiflags) 104 @@ -1050,6 +1049,8 @@ tcp_split_unsent_seg(struct tcp_pcb *pcb, u16_t split) 113 @@ -1086,9 +1087,7 @@ tcp_send_fin(struct tcp_pcb *pcb) 124 @@ -1182,10 +1181,10 @@ tcp_enqueue_flags(struct tcp_pcb *pcb, u8_t flags) [all …]
|
D | 0044-skip-unnecessary-tcp_route.patch | 17 @@ -2294,6 +2294,7 @@ tcp_pcb_purge(struct tcp_pcb *pcb) 29 @@ -1425,7 +1425,12 @@ tcp_output(struct tcp_pcb *pcb) 43 @@ -2220,7 +2225,7 @@ tcp_output_fill_options(const struct tcp_pcb *pcb, struct pbuf *p, u8_t optfl… 47 -tcp_output_control_segment(const struct tcp_pcb *pcb, struct pbuf *p, 48 +tcp_output_control_segment(struct tcp_pcb *pcb, struct pbuf *p, 52 @@ -2228,7 +2233,14 @@ tcp_output_control_segment(const struct tcp_pcb *pcb, struct pbuf *p, 68 @@ -2318,7 +2330,7 @@ tcp_rst(const struct tcp_pcb *pcb, u32_t seqno, u32_t ackno, 73 + tcp_output_control_segment((struct tcp_pcb*)pcb, p, local_ip, remote_ip); 81 @@ -408,6 +408,7 @@ struct tcp_pcb {
|
D | 0097-Mod-the-issue-that-2w-connection-unable-to-establish.patch | 159 @@ -903,7 +903,7 @@ tcp_accept_null(void *arg, struct tcp_pcb *pcb, err_t err) 162 struct tcp_pcb * 163 -tcp_listen_with_backlog(struct tcp_pcb *pcb, u8_t backlog) 164 +tcp_listen_with_backlog(struct tcp_pcb *pcb, u16_t backlog) 168 @@ -926,7 +926,7 @@ tcp_listen_with_backlog(struct tcp_pcb *pcb, u8_t backlog) 171 struct tcp_pcb * 172 -tcp_listen_with_backlog_and_err(struct tcp_pcb *pcb, u8_t backlog, err_t *err) 173 +tcp_listen_with_backlog_and_err(struct tcp_pcb *pcb, u16_t backlog, err_t *err) 244 @@ -575,8 +575,8 @@ void tcp_bind_netif(struct tcp_pcb *pcb, const struct netif *netif); 245 err_t tcp_connect (struct tcp_pcb *pcb, const ip_addr_t *ipaddr, [all …]
|
D | 0053-cleancode-improve-lwipopts.h-readability.patch | 53 @@ -341,7 +341,7 @@ recv_tcp(void *arg, struct tcp_pcb *pcb, struct pbuf *p, err_t err) 71 @@ -609,7 +609,7 @@ accept_function(void *arg, struct tcp_pcb *newpcb, err_t err) 80 @@ -1333,7 +1333,7 @@ lwip_netconn_do_connected(void *arg, struct tcp_pcb *pcb, err_t err) 611 @@ -183,7 +183,7 @@ PER_THREAD struct tcp_pcb *tcp_tw_pcbs; 613 PER_THREAD struct tcp_pcb ** tcp_pcb_lists[NUM_TCP_PCB_LISTS] = {NULL, NULL, NULL, NULL}; 626 static u16_t tcp_new_port(struct tcp_pcb *pcb); 629 @@ -214,7 +214,7 @@ static err_t tcp_close_shutdown_fin(struct tcp_pcb *pcb); 649 tcp_free(struct tcp_pcb *pcb) 656 @@ -405,7 +405,7 @@ tcp_close_shutdown(struct tcp_pcb *pcb, u8_t rst_on_unacked_data) 665 @@ -442,7 +442,7 @@ tcp_close_shutdown(struct tcp_pcb *pcb, u8_t rst_on_unacked_data) [all …]
|
D | 0050-lwip-reuse-ip-port.patch | 27 @@ -772,6 +773,9 @@ tcp_bind(struct tcp_pcb *pcb, const ip_addr_t *ipaddr, u16_t port) 37 @@ -790,6 +794,7 @@ tcp_bind(struct tcp_pcb *pcb, const ip_addr_t *ipaddr, u16_t port) 45 @@ -921,7 +926,18 @@ tcp_listen_with_backlog_and_err(struct tcp_pcb *pcb, u8_t backlog, err_t *err) 65 @@ -936,7 +952,7 @@ tcp_listen_with_backlog_and_err(struct tcp_pcb *pcb, u8_t backlog, err_t *err) 74 @@ -955,6 +971,16 @@ tcp_listen_with_backlog_and_err(struct tcp_pcb *pcb, u8_t backlog, err_t *err) 91 @@ -979,7 +1005,15 @@ tcp_listen_with_backlog_and_err(struct tcp_pcb *pcb, u8_t backlog, err_t *err) 95 - TCP_REG(&tcp_listen_pcbs.pcbs, (struct tcp_pcb *)lpcb); 103 + TCP_REG(&tcp_listen_pcbs.pcbs, (struct tcp_pcb *)lpcb); 200 static inline void vdev_unreg_done(const struct tcp_pcb *pcb) 201 @@ -473,6 +482,16 @@ static inline void vdev_unreg_done(const struct tcp_pcb *pcb)
|
D | 0059-fix-last_unsent-last_unacked.patch | 15 @@ -1375,18 +1375,19 @@ tcp_receive(struct tcp_pcb *pcb) 51 @@ -1444,10 +1444,7 @@ tcp_output(struct tcp_pcb *pcb) 63 @@ -1515,7 +1512,11 @@ tcp_output(struct tcp_pcb *pcb) 75 @@ -1535,6 +1536,7 @@ tcp_output(struct tcp_pcb *pcb) 83 @@ -1550,6 +1552,9 @@ tcp_output(struct tcp_pcb *pcb) 103 @@ -1709,7 +1717,7 @@ tcp_output_segment(struct tcp_seg *seg, struct tcp_pcb *pcb, struct netif *ne…
|
D | 0051-lwip-add-need_tso_send.patch | 28 @@ -1473,7 +1473,7 @@ tcp_output(struct tcp_pcb *pcb) 37 @@ -1529,6 +1529,7 @@ tcp_output(struct tcp_pcb *pcb) 45 @@ -1552,6 +1553,7 @@ tcp_output(struct tcp_pcb *pcb) 53 @@ -1647,6 +1649,7 @@ tcp_output(struct tcp_pcb *pcb) 65 @@ -409,6 +409,8 @@ struct tcp_pcb {
|
D | 0075-adapt-read-write-for-rtc-mode.patch | 138 @@ -515,15 +515,18 @@ tcp_write(struct tcp_pcb *pcb, const void *arg, u16_t len, u8_t apiflags) 158 @@ -631,9 +634,6 @@ tcp_write(struct tcp_pcb *pcb, const void *arg, u16_t len, u8_t apiflags) 168 @@ -651,7 +651,6 @@ tcp_write(struct tcp_pcb *pcb, const void *arg, u16_t len, u8_t apiflags) 176 @@ -698,13 +697,6 @@ tcp_write(struct tcp_pcb *pcb, const void *arg, u16_t len, u8_t apiflags) 190 @@ -714,14 +706,7 @@ tcp_write(struct tcp_pcb *pcb, const void *arg, u16_t len, u8_t apiflags) 205 @@ -730,12 +715,6 @@ tcp_write(struct tcp_pcb *pcb, const void *arg, u16_t len, u8_t apiflags) 218 @@ -763,9 +742,6 @@ tcp_write(struct tcp_pcb *pcb, const void *arg, u16_t len, u8_t apiflags) 228 @@ -855,12 +831,9 @@ tcp_write(struct tcp_pcb *pcb, const void *arg, u16_t len, u8_t apiflags) 263 +tcp_write_from_stack(struct tcp_pcb *pcb, const void *arg, u16_t len, u8_t apiflags) 395 @@ -2095,6 +2197,7 @@ tcp_rexmit(struct tcp_pcb *pcb) [all …]
|
D | 0085-add-lwip-log-tcp_rst-tcp_abandon-tcp_abort.patch | 16 @@ -415,6 +415,9 @@ tcp_close_shutdown(struct tcp_pcb *pcb, u8_t rst_on_unacked_data) 26 @@ -682,7 +685,8 @@ tcp_abandon(struct tcp_pcb *pcb, int reset) 79 @@ -2540,7 +2547,8 @@ tcp_netif_ip_addr_changed_pcblist(const ip_addr_t *old_addr, struct tcp_pcb *… 82 struct tcp_pcb *next = pcb->next; 123 tcp_rst((const struct tcp_pcb *)pcb, ackno, seqno + tcplen, ip_current_dest_addr(), 134 @@ -892,6 +898,9 @@ tcp_timewait_input(struct tcp_pcb *pcb) 144 @@ -1060,6 +1069,8 @@ tcp_process(struct tcp_pcb *pcb) 153 @@ -1102,6 +1113,7 @@ tcp_process(struct tcp_pcb *pcb) 161 @@ -1129,6 +1141,9 @@ tcp_process(struct tcp_pcb *pcb)
|
D | 0057-same-node-gazellectl-a.patch | 52 + struct tcp_pcb *pcb = newconn->pcb.tcp; 190 tcp_free(struct tcp_pcb *pcb) 208 @@ -996,6 +1010,15 @@ tcp_listen_with_backlog_and_err(struct tcp_pcb *pcb, u8_t backlog, err_t *err) 224 @@ -1262,6 +1285,16 @@ tcp_connect(struct tcp_pcb *pcb, const ip_addr_t *ipaddr, u16_t port, 283 @@ -725,6 +725,10 @@ tcp_write(struct tcp_pcb *pcb, const void *arg, u16_t len, u8_t apiflags) 294 @@ -1705,6 +1709,10 @@ tcp_output_segment(struct tcp_seg *seg, struct tcp_pcb *pcb, struct netif *n… 305 @@ -1899,6 +1907,8 @@ tcp_output_segment(struct tcp_seg *seg, struct tcp_pcb *pcb, struct netif *ne… 314 @@ -2236,6 +2246,7 @@ tcp_output_control_segment(struct tcp_pcb *pcb, struct pbuf *p, 330 + struct tcp_pcb *pcb; 358 @@ -418,6 +421,13 @@ struct tcp_pcb { [all …]
|
D | 0038-add-tso.patch | 106 @@ -161,6 +161,40 @@ tcp_route(const struct tcp_pcb *pcb, const ip_addr_t *src, const ip_addr_t *ds… 111 +void tcp_init_segment(struct tcp_seg *seg, const struct tcp_pcb *pcb, struct pbuf *p, u8_t hdrflag… 133 +tcp_create_segment(const struct tcp_pcb *pcb, struct pbuf *p, u8_t hdrflags, u32_t seqno, u8_t opt… 145 …tcp_create_segment(const struct tcp_pcb *pcb, struct pbuf *p, u8_t hdrflags, u32_t seqno, u8_t opt… 147 @@ -210,6 +244,7 @@ tcp_create_segment(const struct tcp_pcb *pcb, struct pbuf *p, u8_t hdrflags, u32 160 +static struct tcp_seg *tcp_output_over(struct tcp_pcb *pcb, struct tcp_seg *seg, struct tcp_seg *u… 189 +static err_t tcp_output_seg(struct tcp_pcb *pcb, struct tcp_seg *seg, struct netif *netif, u32_t s… 216 @@ -1376,16 +1465,88 @@ tcp_output(struct tcp_pcb *pcb) 312 @@ -1462,6 +1623,7 @@ tcp_output(struct tcp_pcb *pcb) 320 @@ -1627,7 +1789,7 @@ tcp_output_segment(struct tcp_seg *seg, struct tcp_pcb *pcb, struct netif *ne…
|
D | 0094-lwip-log-fix-reversed-port-in-tcp_input.patch | 29 tcp_rst((const struct tcp_pcb *)pcb, ackno, seqno + tcplen, ip_current_dest_addr(), 32 @@ -903,7 +903,7 @@ tcp_timewait_input(struct tcp_pcb *pcb) 41 @@ -1073,7 +1073,7 @@ tcp_process(struct tcp_pcb *pcb) 50 @@ -1146,7 +1146,7 @@ tcp_process(struct tcp_pcb *pcb)
|
D | 0046-add-dataack-when-recv-too-many-acks-with-data.patch | 16 @@ -1260,6 +1260,7 @@ tcp_receive(struct tcp_pcb *pcb) 24 @@ -1337,11 +1338,31 @@ tcp_receive(struct tcp_pcb *pcb) 56 @@ -1367,6 +1388,7 @@ tcp_receive(struct tcp_pcb *pcb) 68 @@ -326,6 +326,7 @@ struct tcp_pcb {
|
/third_party/lwip/test/unit/tcp/ |
D | tcp_helper.h | 41 struct pbuf* tcp_create_rx_segment(struct tcp_pcb* pcb, void* data, size_t data_len, 43 struct pbuf* tcp_create_rx_segment_wnd(struct tcp_pcb* pcb, void* data, size_t data_len, 45 void tcp_set_state(struct tcp_pcb* pcb, enum tcp_state state, const ip_addr_t* local_ip, 48 err_t test_tcp_counters_recv(void* arg, struct tcp_pcb* pcb, struct pbuf* p, err_t err); 50 struct tcp_pcb* test_tcp_new_counters_pcb(struct test_tcp_counters* counters);
|
D | tcp_helper.c | 19 tcp_remove(struct tcp_pcb* pcb_list) in tcp_remove() 21 struct tcp_pcb *pcb = pcb_list; in tcp_remove() 22 struct tcp_pcb *pcb2; in tcp_remove() 125 tcp_create_rx_segment(struct tcp_pcb* pcb, void* data, size_t data_len, u32_t seqno_offset, in tcp_create_rx_segment() 137 struct pbuf* tcp_create_rx_segment_wnd(struct tcp_pcb* pcb, void* data, size_t data_len, in tcp_create_rx_segment_wnd() 146 tcp_set_state(struct tcp_pcb* pcb, enum tcp_state state, const ip_addr_t* local_ip, in tcp_set_state() 213 test_tcp_counters_recv(void* arg, struct tcp_pcb* pcb, struct pbuf* p, err_t err) in test_tcp_counters_recv() 238 struct tcp_pcb* 241 struct tcp_pcb* pcb = tcp_new(); in test_tcp_new_counters_pcb()
|
/third_party/lwip/src/apps/snmp/ |
D | snmp_mib2_tcp.c | 98 struct tcp_pcb *pcb = tcp_active_pcbs; in tcp_get_value() 165 tcp_ConnTable_get_cell_value_core(struct tcp_pcb *pcb, const u32_t *column, union snmp_variant_valu… in tcp_ConnTable_get_cell_value_core() 210 struct tcp_pcb *pcb; in tcp_ConnTable_get_cell_value() 259 struct tcp_pcb *pcb; in tcp_ConnTable_get_next_cell_instance_and_value() 300 …return tcp_ConnTable_get_cell_value_core((struct tcp_pcb *)state.reference, column, value, value_l… in tcp_ConnTable_get_next_cell_instance_and_value() 312 tcp_ConnectionTable_get_cell_value_core(const u32_t *column, struct tcp_pcb *pcb, union snmp_varian… in tcp_ConnectionTable_get_cell_value_core() 334 struct tcp_pcb *pcb; in tcp_ConnectionTable_get_cell_value() 337 …struct tcp_pcb **const tcp_pcb_nonlisten_lists[] = {&tcp_bound_pcbs, &tcp_active_pcbs, &tcp_tw_pcb… in tcp_ConnectionTable_get_cell_value() 376 struct tcp_pcb *pcb; in tcp_ConnectionTable_get_next_cell_instance_and_value() 382 …struct tcp_pcb **const tcp_pcb_nonlisten_lists[] = {&tcp_bound_pcbs, &tcp_active_pcbs, &tcp_tw_pcb… in tcp_ConnectionTable_get_next_cell_instance_and_value() [all …]
|
/third_party/lwip/src/apps/lwiperf/ |
D | lwiperf.c | 116 struct tcp_pcb *server_pcb; 117 struct tcp_pcb *conn_pcb; 178 static err_t lwiperf_tcp_poll(void *arg, struct tcp_pcb *tpcb); 354 lwiperf_tcp_client_sent(void *arg, struct tcp_pcb *tpcb, u16_t len) in lwiperf_tcp_client_sent() 369 lwiperf_tcp_client_connected(void *arg, struct tcp_pcb *tpcb, err_t err) in lwiperf_tcp_client_connected() 392 struct tcp_pcb *newpcb; in lwiperf_tx_start_impl() 456 lwiperf_tcp_recv(void *arg, struct tcp_pcb *tpcb, struct pbuf *p, err_t err) in lwiperf_tcp_recv() 573 lwiperf_tcp_poll(void *arg, struct tcp_pcb *tpcb) in lwiperf_tcp_poll() 592 lwiperf_tcp_accept(void *arg, struct tcp_pcb *newpcb, err_t err) in lwiperf_tcp_accept() 689 struct tcp_pcb *pcb; in lwiperf_start_tcp_server_impl()
|