Lines Matching refs:netbuf
8 * TX/RX handling based on @ref netbuf (containing @ref pbuf)
564 * Receive data: actual implementation that doesn't care whether pbuf or netbuf
568 * @param new_buf pointer where a new pbuf/netbuf is stored when received data
658 len = netbuf_len((struct netbuf *)buf);
813 * Receive data (in form of a netbuf) from a UDP or RAW netconn
816 * @param new_buf pointer where a new netbuf is stored when received data
822 netconn_recv_udp_raw_netbuf(struct netconn *conn, struct netbuf **new_buf)
831 * Receive data (in form of a netbuf) from a UDP or RAW netconn
834 * @param new_buf pointer where a new netbuf is stored when received data
842 netconn_recv_udp_raw_netbuf_flags(struct netconn *conn, struct netbuf **new_buf, u8_t apiflags)
852 * Receive data (in form of a netbuf containing a packet buffer) from a netconn
855 * @param new_buf pointer where a new netbuf is stored when received data
860 netconn_recv(struct netconn *conn, struct netbuf **new_buf)
863 struct netbuf *buf = NULL;
879 buf = (struct netbuf *)memp_malloc(MEMP_NETBUF);
912 * Send data (in form of a netbuf) to a specific remote IP address and port.
916 * @param buf a netbuf containing the data to send
922 netconn_sendto(struct netconn *conn, struct netbuf *buf, const ip_addr_t *addr, u16_t port)
937 * @param buf a netbuf containing the data to send
941 netconn_send(struct netconn *conn, struct netbuf *buf)