Lines Matching full:this
14 * this list of conditions and the following disclaimer.
16 * this list of conditions and the following disclaimer in the documentation
19 * derived from this software without specific prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
29 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY
32 * This file is part of the lwIP TCP/IP stack.
74 * Use this if you intend to pass the pbuf to functions like udp_send().
78 * Use this if you intend to pass the pbuf to functions like raw_send().
82 * Use this if you intend to pass the pbuf to functions like ethernet_output().
88 * Use this if you intend to pass the pbuf to functions like netif->linkoutput().
92 /** Use this for input packets in a netif driver when calling netif->input()
107 This should be used for all OUTGOING packets (TX).*/
117 /** pbuf payload refers to RAM. This one comes from a pool and should be used
121 Don't use this for TX, if the pool becomes empty e.g. because of TCP queuing,
127 /** indicates this packet's data should be immediately passed to the application */
129 /** indicates this is a custom pbuf: pbuf_free calls pbuf_custom->custom_free_function()
132 /** indicates this pbuf is UDP multicast to be looped back */
134 /** indicates this pbuf was received as link-level broadcast */
136 /** indicates this pbuf was received as link-level multicast */
138 /** indicates this pbuf includes a TCP FIN flag */
150 * total length of this buffer and all next buffers in chain
153 * For non-queue packet chains this is the invariant:
158 /** length of this buffer */
169 * that refer to this pbuf. This can be pointers from an application,
177 * The only meaning of this one is to provide a const payload pointer
196 /** This function is called when pbuf_free deallocates this pbuf(_custom) */
201 /** Define this to 0 to prevent freeing ooseq pbufs when the PBUF_POOL is empty */
220 /* Initializes the pbuf module. This call is empty for now, but may not be in future. */