HomeSort by relevance Sort by last modified time
    Searched refs:tcp_pcb (Results 1 - 11 of 11) sorted by null

  /external/syslinux/core/lwip/src/include/lwip/
tcp.h 50 struct tcp_pcb;
61 typedef err_t (*tcp_accept_fn)(void *arg, struct tcp_pcb *newpcb, err_t err);
73 typedef err_t (*tcp_recv_fn)(void *arg, struct tcp_pcb *tpcb,
87 typedef err_t (*tcp_sent_fn)(void *arg, struct tcp_pcb *tpcb,
99 typedef err_t (*tcp_poll_fn)(void *arg, struct tcp_pcb *tpcb);
125 typedef err_t (*tcp_connected_fn)(void *arg, struct tcp_pcb *tpcb, err_t err);
143 * @param arg user-supplied argument (tcp_pcb.callback_arg)
144 * @param pcb a new tcp_pcb that now is connected
155 * members common to struct tcp_pcb and struct tcp_listen_pcb
169 struct tcp_pcb { struct
    [all...]
tcp_impl.h 67 struct tcp_pcb * tcp_alloc (u8_t prio);
68 void tcp_abandon (struct tcp_pcb *pcb, int reset);
69 err_t tcp_send_empty_ack(struct tcp_pcb *pcb);
70 void tcp_rexmit (struct tcp_pcb *pcb);
71 void tcp_rexmit_rto (struct tcp_pcb *pcb);
72 void tcp_rexmit_fast (struct tcp_pcb *pcb);
73 u32_t tcp_update_rcv_ann_wnd(struct tcp_pcb *pcb);
285 tcp_pcb.unsent_oversized only) */
310 extern struct tcp_pcb *tcp_input_pcb;
316 struct tcp_pcb *pcbs
    [all...]
memp_std.h 42 LWIP_MEMPOOL(TCP_PCB, MEMP_NUM_TCP_PCB, sizeof(struct tcp_pcb), "TCP_PCB")
api.h 124 struct tcp_pcb;
142 struct tcp_pcb *tcp;
  /external/syslinux/core/lwip/src/core/
tcp.c 82 struct tcp_pcb *tcp_bound_pcbs;
87 struct tcp_pcb *tcp_active_pcbs;
89 struct tcp_pcb *tcp_tw_pcbs;
94 struct tcp_pcb ** const tcp_pcb_lists[] = {&tcp_listen_pcbs.pcbs, &tcp_bound_pcbs,
98 struct tcp_pcb *tcp_tmp_pcb;
133 * @param pcb the tcp_pcb to close
138 tcp_close_shutdown(struct tcp_pcb *pcb, u8_t rst_on_unacked_data)
247 * @param pcb the tcp_pcb to close
252 tcp_close(struct tcp_pcb *pcb)
278 tcp_shutdown(struct tcp_pcb *pcb, int shut_rx, int shut_tx
    [all...]
tcp_out.c 79 static void tcp_output_segment(struct tcp_seg *seg, struct tcp_pcb *pcb);
92 tcp_output_alloc_header(struct tcp_pcb *pcb, u16_t optlen, u16_t datalen,
119 * @param pcb the tcp_pcb over which to send a segment
123 tcp_send_fin(struct tcp_pcb *pcb)
156 tcp_create_segment(struct tcp_pcb *pcb, struct pbuf *p, u8_t flags, u32_t seqno, u8_t optflags)
217 u16_t *oversize, struct tcp_pcb *pcb, u8_t apiflags,
291 tcp_write_checks(struct tcp_pcb *pcb, u16_t len)
351 tcp_write(struct tcp_pcb *pcb, const void *arg, u16_t len, u8_t apiflags)
715 tcp_enqueue_flags(struct tcp_pcb *pcb, u8_t flags)
818 * @param pcb tcp_pcb
    [all...]
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);
77 static void tcp_parseopt(struct tcp_pcb *pcb);
80 static err_t tcp_timewait_input(struct tcp_pcb *pcb);
94 struct tcp_pcb *pcb, *prev;
97 struct tcp_pcb *lpcb_prev = NULL;
247 prev = (struct tcp_pcb *)lpcb;
444 struct tcp_pcb *npcb;
520 * @param pcb the tcp_pcb for which a segment arrive
    [all...]
netif.c 324 struct tcp_pcb *pcb;
329 /* extern struct tcp_pcb *tcp_active_pcbs; defined by tcp.h */
341 struct tcp_pcb *next = pcb->next;
pbuf.c 110 struct tcp_pcb* pcb;
    [all...]
  /external/syslinux/core/lwip/src/api/
api_msg.c 213 * @see tcp.h (struct tcp_pcb.recv) for parameters and return value
216 recv_tcp(void *arg, struct tcp_pcb *pcb, struct pbuf *p, err_t err)
274 * @see tcp.h (struct tcp_pcb.poll) for parameters and return value
277 poll_tcp(void *arg, struct tcp_pcb *pcb)
310 * @see tcp.h (struct tcp_pcb.sent) for parameters and return value
313 sent_tcp(void *arg, struct tcp_pcb *pcb, u16_t len)
344 * @see tcp.h (struct tcp_pcb.err) for parameters
407 * Setup a tcp_pcb with the correct callback function pointers
415 struct tcp_pcb *pcb;
432 accept_function(void *arg, struct tcp_pcb *newpcb, err_t err
    [all...]
  /external/syslinux/core/lwip/src/core/snmp/
mib2.c     [all...]

Completed in 630 milliseconds