Searched refs:pbuf (Results 51 – 65 of 65) sorted by relevance
123
| /lib/liblwip/src/include/lwip/ |
| D | tcp_impl.h | 64 void tcp_input (struct pbuf *p, struct netif *inp); 279 struct pbuf *p; /* buffer containing data + TCP header */ 458 err_t tcp_recv_null(void *arg, struct tcp_pcb *pcb, struct pbuf *p, err_t err);
|
| D | memp_std.h | 23 …um, payload, desc) LWIP_MEMPOOL(name, num, (MEMP_ALIGN_SIZE(sizeof(struct pbuf)) + MEMP_ALIGN_SIZE…
|
| D | dhcp.h | 46 struct pbuf *p_out; /* pbuf of outcoming msg */
|
| D | api.h | 233 err_t netconn_recv_tcp_pbuf(struct netconn *conn, struct pbuf **new_buf);
|
| /lib/liblwip/doc/ |
| D | rawapi.txt | 234 struct pbuf *p, err_t err)) 237 arrives. The callback function will be passed a NULL pbuf to 240 ERR_OK, then it must free the pbuf. Otherwise, it must not 241 free the pbuf so that lwIP core code can store it. 349 - err_t udp_send(struct udp_pcb *pcb, struct pbuf *p) 351 Sends the pbuf p. The pbuf is not deallocated. 355 struct pbuf *p, 395 Initializes the pbuf memory pool defined by PBUF_POOL_SIZE. 420 err_t (* input)(struct pbuf *p, struct netif *netif))
|
| D | snmp_agent.txt | 49 to use pbuf-chains. Larger payloads than the minimum
|
| /lib/liblwip/ |
| D | SConscript | 33 "src/core/pbuf.c",
|
| /lib/liblwip/test/unit/tcp/ |
| D | test_tcp.c | 78 struct pbuf* p; in START_TEST() 129 struct pbuf* p; in START_TEST() 316 struct pbuf* p; in START_TEST() 503 struct pbuf *p; in test_tcp_tx_full_window_lost()
|
| /lib/liblwip/src/core/snmp/ |
| D | msg_in.c | 61 static void snmp_recv(void *arg, struct udp_pcb *pcb, struct pbuf *p, ip_addr_t *addr, u16_t port); 62 static err_t snmp_pdu_header_check(struct pbuf *p, u16_t ofs, u16_t pdu_len, u16_t *ofs_ret, struct… 63 static err_t snmp_pdu_dec_varbindlist(struct pbuf *p, u16_t ofs, u16_t *ofs_ret, struct snmp_msg_ps… 822 snmp_recv(void *arg, struct udp_pcb *pcb, struct pbuf *p, ip_addr_t *addr, u16_t port) in snmp_recv() 916 snmp_pdu_header_check(struct pbuf *p, u16_t ofs, u16_t pdu_len, u16_t *ofs_ret, struct snmp_msg_pst… in snmp_pdu_header_check() 1110 snmp_pdu_dec_varbindlist(struct pbuf *p, u16_t ofs, u16_t *ofs_ret, struct snmp_msg_pstat *m_stat) in snmp_pdu_dec_varbindlist()
|
| /lib/liblwip/src/core/ |
| D | dns.c | 211 static void dns_recv(void *s, struct udp_pcb *pcb, struct pbuf *p, ip_addr_t *addr, u16_t port); 565 struct pbuf *p; in dns_send() 733 dns_recv(void *arg, struct udp_pcb *pcb, struct pbuf *p, ip_addr_t *addr, u16_t port) in dns_recv()
|
| D | tcp_in.c | 70 static struct pbuf *recv_data; 92 tcp_input(struct pbuf *p, struct netif *inp) in tcp_input() 853 struct pbuf *p; in tcp_receive() 1498 struct pbuf *p = next->p; in tcp_receive()
|
| D | dhcp.c | 160 static void dhcp_recv(void *arg, struct udp_pcb *pcb, struct pbuf *p, ip_addr_t *addr, u16_t port); 1337 dhcp_parse_reply(struct dhcp *dhcp, struct pbuf *p) in dhcp_parse_reply() 1344 struct pbuf *q; in dhcp_parse_reply() 1537 dhcp_recv(void *arg, struct udp_pcb *pcb, struct pbuf *p, ip_addr_t *addr, u16_t port) in dhcp_recv()
|
| D | tcp.c | 1091 struct pbuf *refused_data = pcb->refused_data; in tcp_process_refused_data() 1197 tcp_recv_null(void *arg, struct tcp_pcb *pcb, struct pbuf *p, err_t err) in tcp_recv_null()
|
| /lib/liblwip/src/api/ |
| D | sockets.c | 298 pbuf_free((struct pbuf *)lastdata); in free_socket() 562 struct pbuf *p; in lwip_recvfrom() 600 err = netconn_recv_tcp_pbuf(sock->conn, (struct pbuf **)&buf); in lwip_recvfrom() 630 p = (struct pbuf *)buf; in lwip_recvfrom() 725 pbuf_free((struct pbuf *)buf); in lwip_recvfrom() 829 struct pbuf* p; 2310 struct pbuf *p = (struct pbuf *)sock->lastdata;
|
| D | api_msg.c | 78 recv_raw(void *arg, struct raw_pcb *pcb, struct pbuf *p, in recv_raw() 81 struct pbuf *q; in recv_raw() 144 recv_udp(void *arg, struct udp_pcb *pcb, struct pbuf *p, 216 recv_tcp(void *arg, struct tcp_pcb *pcb, struct pbuf *p, err_t err) 686 struct pbuf *p; 697 p = (struct pbuf*)mem;
|
123