Searched refs:tcp_write (Results 1 - 9 of 9) sorted by relevance

/vbox/src/VBox/Devices/Network/lwip/vbox/include/
H A Dlwipopts.h283 #define tcp_write lwip_tcp_write macro
/vbox/src/VBox/Devices/Network/lwip-new/src/include/lwip/
H A Dtcp.h377 /* Flags for "apiflags" parameter in tcp_write */
381 err_t tcp_write (struct tcp_pcb *pcb, const void *dataptr, u16_t len,
/vbox/src/VBox/Devices/Network/lwip-new/vbox/include/
H A Dlwip-namespace.h205 #define tcp_write lwip_tcp_write macro
/vbox/src/VBox/Devices/Network/lwip/src/core/
H A Dtcp_out.c74 * calling tcp_write().
78 * @see tcp_write()
82 tcp_write(struct tcp_pcb *pcb, const void *arg, u16_t len, u8_t copy) function
84 LWIP_DEBUGF(TCP_OUTPUT_DEBUG, ("tcp_write(pcb=%p, arg=%p, len=%"U16_F", copy=%"U16_F")\n", (void *)pcb,
96 LWIP_DEBUGF(TCP_OUTPUT_DEBUG | DBG_STATE | 3, ("tcp_write() called in invalid state\n"));
/vbox/src/VBox/Devices/Network/lwip/src/include/lwip/
H A Dtcp.h88 err_t tcp_write (struct tcp_pcb *pcb, const void *dataptr, u16_t len,
/vbox/src/VBox/NetworkServices/NAT/
H A Dpxtcp.c80 * tcp_write() to the pcb on the lwip thread.
787 * some of the data (tcp_write() failed with ERR_MEM). We may
1946 * We swtich it on when tcp_write() or tcp_shutdown() fail with
2051 * tcp_write() but not yet acknowledged, we will advance
2090 error = tcp_write(pcb, &pxtcp->inbuf.buf[beg], toeob, maybemore);
2115 error = tcp_write(pcb, &pxtcp->inbuf.buf[beg], (u16_t)tolim, 0);
/vbox/src/VBox/Devices/Network/lwip/src/api/
H A Dapi_msg.c716 err = tcp_write(msg->conn->pcb.tcp, msg->msg.w.dataptr,
/vbox/src/VBox/Devices/Network/lwip-new/src/api/
H A Dapi_msg.c1293 err = tcp_write(conn->pcb.tcp, dataptr, len, apiflags);
1325 /* tcp_write returned ERR_MEM, try tcp_output anyway */
/vbox/src/VBox/Devices/Network/lwip-new/src/core/
H A Dtcp_out.c150 * Called by tcp_write and tcp_enqueue_flags.
216 * @param apiflags API flags given to tcp_write.
239 * length required? If tcp_write is going to be called again
290 /** Checks if tcp_write is allowed or not (checks state, snd_buf and snd_queuelen).
294 * @return ERR_OK if tcp_write is allowed to proceed, another err_t otherwise
304 LWIP_DEBUGF(TCP_OUTPUT_DEBUG | LWIP_DBG_STATE | LWIP_DBG_LEVEL_SEVERE, ("tcp_write() called in invalid state\n"));
312 LWIP_DEBUGF(TCP_OUTPUT_DEBUG | 3, ("tcp_write: too much data (len=%"U16_F" > snd_buf=%"U16_F")\n",
318 LWIP_DEBUGF(TCP_QLEN_DEBUG, ("tcp_write: queuelen: %"U16_F"\n", (u16_t)pcb->snd_queuelen));
324 LWIP_DEBUGF(TCP_OUTPUT_DEBUG | 3, ("tcp_write: too long queue %"U16_F" (max %"U16_F")\n",
331 LWIP_ASSERT("tcp_write
357 tcp_write(struct tcp_pcb *pcb, const void *arg, u16_t len, u8_t apiflags) function
[all...]

Completed in 65 milliseconds