Searched defs:raw_pcb (Results 1 - 2 of 2) sorted by relevance

/vbox/src/VBox/Devices/Network/lwip/src/include/lwip/
H A Draw.h41 struct raw_pcb { struct
45 struct raw_pcb *next;
49 u8_t (* recv)(void *arg, struct raw_pcb *pcb, struct pbuf *p,
56 struct raw_pcb * raw_new (u16_t proto);
57 void raw_remove (struct raw_pcb *pcb);
58 err_t raw_bind (struct raw_pcb *pcb, struct ip_addr *ipaddr);
59 err_t raw_connect (struct raw_pcb *pcb, struct ip_addr *ipaddr);
61 void raw_recv (struct raw_pcb *pcb,
62 u8_t (* recv)(void *arg, struct raw_pcb *pcb,
66 err_t raw_sendto (struct raw_pcb *pc
[all...]
/vbox/src/VBox/Devices/Network/lwip-new/src/include/lwip/
H A Draw.h49 struct raw_pcb;
52 * @param arg user supplied argument (raw_pcb.recv_arg)
53 * @param pcb the raw_pcb which received data
61 typedef u8_t (*raw_recv_fn)(void *arg, struct raw_pcb *pcb, struct pbuf *p,
66 * @param arg user supplied argument (raw_pcb.recv_arg)
67 * @param pcb the raw_pcb which received data
75 typedef u8_t (*raw_recv_ip6_fn)(void *arg, struct raw_pcb *pcb, struct pbuf *p,
85 struct raw_pcb { struct
89 struct raw_pcb *next;
104 struct raw_pcb * raw_ne
[all...]

Completed in 55 milliseconds