Searched refs:tcp_output (Results 1 - 21 of 21) sorted by relevance

/barrelfish-master/usr/bench/net_latency/elb/
H A Dtcp_server.c59 r = tcp_output(tpcb);
250 err = tcp_output(client_pcb);
/barrelfish-master/usr/echoserver/
H A Dtcpechoserver.c116 r = tcp_output(tpcb);
/barrelfish-master/include/lwip/lwip/
H A Dtcp.h129 err_t tcp_output(struct tcp_pcb *pcb);
147 #define tcp_output_nagle(tpcb) (tcp_do_output_nagle(tpcb) ? tcp_output(tpcb) : ERR_OK)
367 * @return ERR_OK: try to send some data by calling tcp_output
376 * @return ERR_OK: try to send some data by calling tcp_output
394 * @return ERR_OK: try to send some data by calling tcp_output
554 tcp_output(pcb); \
564 tcp_output(pcb); \
/barrelfish-master/lib/lwip2/src/core/
H A Dtcp.c366 to make sure tcp_output doesn't fail.
369 for the return value of tcp_output for now. */
370 tcp_output(pcb);
820 tcp_output(pcb);
968 tcp_output(pcb);
1197 tcp_output(prev);
1263 tcp_output(pcb);
1291 /** Call tcp_output for all active pcbs that have TF_NAGLEMEMERR set */
1299 tcp_output(pcb);
1866 tcp_output(pc
[all...]
H A Dtcp_in.c492 tcp_output(pcb);
629 tcp_output(npcb);
673 tcp_output(pcb);
780 /* might happen if tcp_output fails in tcp_rexmit_rto()
H A Dtcp_out.c98 * functions other than the default tcp_output -> tcp_output_segment
210 /* ackno is set in tcp_output */
212 /* wnd and chksum are set in tcp_output */
356 * To prompt the system to send data now, call tcp_output() after
938 LWIP_DEBUGF(TCP_OUTPUT_DEBUG, ("tcp_output: (ACK) could not allocate pbuf\n"));
945 ("tcp_output: sending ACK for %"U32_F"\n", pcb->rcv_nxt));
993 tcp_output(struct tcp_pcb *pcb) function
1004 LWIP_ASSERT("don't call tcp_output for listen-pcbs",
1053 LWIP_DEBUGF(TCP_OUTPUT_DEBUG, ("tcp_output: nothing to send (%p)\n",
1059 LWIP_DEBUGF(TCP_CWND_DEBUG, ("tcp_output
[all...]
/barrelfish-master/lib/lwip/src/core/
H A Dtcp.c181 to make sure tcp_output doesn't fail.
184 for the return value of tcp_output for now. */
187 tcp_output(pcb);
527 tcp_output(pcb);
734 tcp_output(pcb);
1227 tcp_output(pcb);
H A Dtcp_out.c105 * To prompt the system to send data now, call tcp_output() after
493 err_t tcp_output(struct tcp_pcb *pcb) function
539 ("tcp_output: (ACK) could not allocate pbuf\n"));
543 ("tcp_output: sending ACK for %" U32_F "\n", pcb->rcv_nxt));
583 LWIP_DEBUGF(TCP_OUTPUT_DEBUG, ("tcp_output: nothing to send (%p)\n",
589 LWIP_DEBUGF(TCP_CWND_DEBUG, ("tcp_output: snd_wnd %" U16_F
596 ("tcp_output: snd_wnd %" U16_F ", cwnd %" U16_F ", wnd %"
613 * RST is no sent using tcp_enqueue/tcp_output.
621 ("tcp_output: snd_wnd %" U16_F ", cwnd %" U16_F ", wnd %"
690 * Called by tcp_output() t
[all...]
H A Dtcp_in.c364 tcp_output(pcb);
494 return tcp_output(npcb);
516 return tcp_output(pcb);
/barrelfish-master/include/lwip2/lwip/
H A Dtcp.h90 * @return ERR_OK: try to send some data by calling tcp_output
102 * @return ERR_OK: try to send some data by calling tcp_output
419 err_t tcp_output (struct tcp_pcb *pcb);
/barrelfish-master/usr/bfscope/
H A Dbfscope.c189 tcp_output(bfscope_client);
/barrelfish-master/usr/block_server/
H A Dnetwork_client.c263 err = tcp_output(server->tpcb);
266 fprintf(stderr, "error in tcp_output %d\n", err);
503 err = tcp_output(server->tpcb);
506 fprintf(stderr, "error in tcp_output %d\n", err);
H A Dnetwork_server.c96 err = tcp_output(c->tpcb);
99 debug_printf("ERROR: tcp_output returned with error %i\n", err);
/barrelfish-master/usr/netfile/
H A Dnetfile.c335 err = tcp_output(pcb);
339 fprintf(stderr, "error in tcp_output %d\n", err);
/barrelfish-master/include/lwip2/lwip/priv/
H A Dtcp_priv.h73 tcp_output, so use this with care as it might slow down the system. */
103 #define tcp_output_nagle(tpcb) (tcp_do_output_nagle(tpcb) ? tcp_output(tpcb) : ERR_OK)
/barrelfish-master/lib/lwip2/src/apps/lwiperf/
H A Dlwiperf.c320 tcp_output(conn->conn_pcb);
/barrelfish-master/lib/lwip2/src/api/
H A Dapi_msg.c1576 out_err = tcp_output(conn->pcb.tcp);
1578 /* If tcp_output fails with fatal error or no route is found,
1591 /* tcp_write returned ERR_MEM, try tcp_output anyway */
1592 err_t out_err = tcp_output(conn->pcb.tcp);
1594 /* If tcp_output fails with fatal error or no route is found,
/barrelfish-master/lib/lwip2/src/apps/httpd/
H A Dhttpd.c1048 LWIP_DEBUGF(HTTPD_DEBUG, ("tcp_output\n"));
1158 * - 0: no data has been written (no need to call tcp_output)
1185 * - 0: no data has been written (no need to call tcp_output)
1458 * is processed before we call tcp_output. */
1880 LWIP_DEBUGF(HTTPD_DEBUG | LWIP_DBG_TRACE, ("tcp_output\n"));
1881 tcp_output(hs->pcb);
2417 LWIP_DEBUGF(HTTPD_DEBUG | LWIP_DBG_TRACE, ("tcp_output\n"));
2418 tcp_output(pcb);
/barrelfish-master/lib/lwip/src/api/
H A Dapi_msg.c1075 /* tcp_enqueue returned ERR_MEM, try tcp_output anyway */
1076 err = tcp_output(conn->pcb.tcp);
/barrelfish-master/usr/net_socket_server/
H A Dnet_sockets_server.c741 e = tcp_output(socket->tcp_socket);
H A Dlib_netss.c777 e = tcp_output(socket->tcp_socket);

Completed in 314 milliseconds