Home
last modified time | relevance | path

Searched refs:recv (Results 1 – 25 of 26) sorted by relevance

12

/lib/liblwip/src/core/
Draw.c102 if (pcb->recv != NULL) { in raw_input()
104 if (pcb->recv(pcb->recv_arg, pcb, p, ip_current_src_addr()) != 0) { in raw_input()
183 raw_recv(struct raw_pcb *pcb, raw_recv_fn recv, void *recv_arg) in raw_recv() argument
186 pcb->recv = recv; in raw_recv()
Dudp.c163 UDP_STATS_INC(udp.recv);
374 if (mpcb->recv != NULL) {
387 mpcb->recv(mpcb->recv_arg, mpcb, q, ip_current_src_addr(), src);
401 if (pcb->recv != NULL) {
403 pcb->recv(pcb->recv_arg, pcb, p, ip_current_src_addr(), src);
930 udp_recv(struct udp_pcb *pcb, udp_recv_fn recv, void *recv_arg) argument
933 pcb->recv = recv;
Dstats.c76 LWIP_PLATFORM_DIAG(("recv: %"STAT_COUNTER_F"\n\t", proto->recv)); in stats_display_proto()
95 LWIP_PLATFORM_DIAG(("recv: %"STAT_COUNTER_F"\n\t", igmp->recv)); in stats_display_igmp()
Dtcp.c1334 pcb->recv = tcp_recv_null; in tcp_alloc()
1392 tcp_recv(struct tcp_pcb *pcb, tcp_recv_fn recv) in tcp_recv() argument
1395 pcb->recv = recv; in tcp_recv()
Dnetif.c744 LINK_STATS_INC(link.recv); in netif_poll()
/lib/liblwip/src/include/lwip/
Draw.h72 raw_recv_fn recv; member
84 void raw_recv (struct raw_pcb *pcb, raw_recv_fn recv, void *recv_arg);
Dudp.h114 udp_recv_fn recv; member
130 void udp_recv (struct udp_pcb *pcb, udp_recv_fn recv,
Dtcp_impl.h228 if((pcb)->recv != NULL) { \
229 (ret) = (pcb)->recv((pcb)->callback_arg,(pcb),(p),(err));\
237 if(((pcb)->recv != NULL)) { \
238 (ret) = (pcb)->recv((pcb)->callback_arg,(pcb),NULL,ERR_OK);\
Dtcp.h254 tcp_recv_fn recv; member
320 void tcp_recv (struct tcp_pcb *pcb, tcp_recv_fn recv);
Dstats.h60 STAT_COUNTER recv; /* Received packets. */ member
75 STAT_COUNTER recv; /* Received packets. */ member
Dsockets.h356 #define recv(a,b,c,d) lwip_recv(a,b,c,d) macro
/lib/liblwip/src/netif/
Dethernetif.c203 LINK_STATS_INC(link.recv);
Dslipif.c189 LINK_STATS_INC(link.recv); in slipif_rxbyte()
Detharp.c734 ETHARP_STATS_INC(etharp.recv);
/lib/liblwip/src/core/ipv6/
Dicmp6.c54 ICMP_STATS_INC(icmp.recv); in icmp_input()
Dip6.c169 IP_STATS_INC(ip.recv); in ip_input()
/lib/liblwip/src/arch/
Detherif.c236 LINK_STATS_INC(link.recv); in low_level_input()
/lib/liblwip/
DUPGRADING20 shutdown before): Now the application does *NOT* get any calls to the recv
32 * LWIP_SO_RCVTIMEO: when accept() or recv() time out, they
DCHANGELOG99 * tcp_out.c: fixed bug #35945: SYN packet should provide the recv MSS not the
409 * api.h, api_lib.c, sockets.c: task #10167 (sockets: speed up TCP recv
787 recv callbacks after calling tcp_close(). Added tcp_shutdown().
831 (recv() makes receive window update for data that wasn't received by
877 * tcp.h, tcp.c, tcp_in.c: Fixed bug #27871: Calling tcp_abort() in recv
1049 pcb->recv is NULL to keep rcv_wnd correct)
1293 If you want this option also filter broadcast on recv operations, you also
1406 RECV_BUFSIZE_DEFAULT (fixes bug #23726: pbuf pool exhaustion on slow recv())
1858 * sockets.h, sockets.c: Implement MSG_PEEK flag for recv/recvfrom functions.
1929 * api_lib.c: Implement SO_RCVTIMEO for accept and recv on TCP
[all …]
/lib/liblwip/src/core/ipv4/
Dicmp.c87 ICMP_STATS_INC(icmp.recv); in icmp_input()
Digmp.c396 IGMP_STATS_INC(igmp.recv); in igmp_input()
Dip_frag.c486 IPFRAG_STATS_INC(ip_frag.recv); in ip_reass()
Dip.c315 IP_STATS_INC(ip.recv);
/lib/liblwip/doc/
Drawapi.txt233 err_t (* recv)(void *arg, struct tcp_pcb *tpcb,
354 void (* recv)(void *arg, struct udp_pcb *upcb,
/lib/liblwip/src/netif/ppp/
Dppp.c1617 LINK_STATS_INC(link.recv); in pppInput()

12