Searched refs:netconn_write (Results 1 - 6 of 6) sorted by relevance

/barrelfish-2018-10-04/lib/lwip2/src/apps/httpserver/
H A Dhttpserver-netconn.c46 netconn_write(conn, http_html_hdr, sizeof(http_html_hdr)-1, NETCONN_NOCOPY);
49 netconn_write(conn, http_index_html, sizeof(http_index_html)-1, NETCONN_NOCOPY);
/barrelfish-2018-10-04/lib/lwip2/src/apps/tcpecho/
H A Dtcpecho.c77 err = netconn_write(newconn, data, len, NETCONN_COPY);
80 printf("tcpecho: netconn_write: error \"%s\"\n", lwip_strerr(err));
/barrelfish-2018-10-04/include/lwip/lwip/
H A Dapi.h54 /* Flags for netconn_write */
145 /** TCP: when data passed to netconn_write doesn't fit into the send buffer,
148 /** TCP: when data passed to netconn_write doesn't fit into the send buffer,
152 /** TCP: when data passed to netconn_write doesn't fit into the send buffer,
204 err_t netconn_write(struct netconn *conn,
/barrelfish-2018-10-04/include/lwip2/lwip/
H A Dapi.h60 /* Flags for netconn_write (u8_t) */
261 /** TCP: when data passed to netconn_write doesn't fit into the send buffer,
264 /** TCP: when data passed to netconn_write doesn't fit into the send buffer,
323 #define netconn_write(conn, dataptr, size, apiflags) \ macro
/barrelfish-2018-10-04/lib/lwip/src/api/
H A Dapi_lib.c520 netconn_write(struct netconn * conn, const void *dataptr, size_t size, function
525 LWIP_ERROR("netconn_write: invalid conn", (conn != NULL), return ERR_ARG;
527 LWIP_ERROR("netconn_write: invalid conn->type", (conn->type == NETCONN_TCP),
H A Dsockets.c710 netconn_write(sock->conn, data, size,

Completed in 98 milliseconds