Lines Matching full:send
82 * filename that the HTTP server will send to the browser as a response to
174 /* Filename for response file to send when POST is finished or
390 /* send RST when killing a connection because of memory shortage */ in http_kill_oldest_connection()
470 …LWIP_DEBUGF(HTTPD_DEBUG_TIMING, ("httpd: needed %"U32_F" ms to send file of %d bytes -> %"U32_F" b… in http_state_eof()
511 * @param pcb tcp_pcb to send
512 * @param ptr Data to send
513 * @param length Length of data to send (in/out: on return, contains the
528 /* We cannot send more data than space available in the send buffer. */ in http_write()
541 LWIP_DEBUGF(HTTPD_DEBUG | LWIP_DBG_TRACE, ("Trying go send %d bytes\n", len)); in http_write()
552 ("Send failed, trying less (%d bytes)\n", len)); in http_write()
560 …LWIP_DEBUGF(HTTPD_DEBUG | LWIP_DBG_TRACE, ("Send failed with err %d (\"%s\")\n", err, lwip_strerr(… in http_write()
836 /* In all cases, the second header we send is the server identification
842 /* Is this a normal file or the special case we use to send back the
855 /* Set up to send the first header string. */
909 not send any HTTP headers with the response. */
963 /* Set up to send the first header string. */
968 /** Sub-function of http_send(): send dynamic headers
973 * so don't send HTTP body yet
983 /* How much data can we send? */
991 /* How much do we have to send from the current header? */
994 /* How much of this can we send? */
997 /* Send this amount of data or as much as we can given memory
1014 /* special case: http_write does not try to send 1 byte */
1036 /* When we are at the end of the headers, check for data to send
1043 /* If we get here and there are still header bytes to send, we send
1045 * more headers to send, but we do have file data to send, drop through
1046 * to try to send some file data too. */
1086 /* Do we already have a send buffer allocated? */
1091 /* We don't have a send buffer so allocate one now */
1112 /* Did we get a send buffer? If not, return immediately. */
1139 /* Set up to send the block of data we just read */
1155 /** Sub-function of http_send(): This is the normal send-routine for non-ssi files
1168 * Just send the data as we received it from the file. */
1182 /** Sub-function of http_send(): This is the send-routine for ssi files
1201 /* How much data could we send? */
1204 /* Do we have remaining data to send before parsing more? */
1215 /* If the send buffer is full, return now. */
1369 * tag, we need to send it now. */
1371 /* How much of the data can we send? */
1406 * data as a result of that discovery. We send either remaining data
1410 /* Do we have any remaining file data to send from the buffer prior
1413 /* How much of the data can we send? */
1440 /* Did the last SSIHandler have more to send? */
1449 /* Do we still have insert data left to send? */
1452 * insert can we send? */
1489 * file data to send so send it now. In TAG_SENDING state, we've already
1490 * handled this so skip the send if that's the case. */
1506 * Try to send more data on this pcb.
1508 * @param pcb the pcb to send data
1539 /* Do we have any more header data to send for this file? */
1549 /* Have we run out of file data to send? If so, we need to read the next
1578 /** Initialize a http connection with a file to send for an error message
1643 * send back a default 404 page.
1868 /** Try to send more data if file has been blocked before
1877 LWIP_DEBUGF(HTTPD_DEBUG | LWIP_DBG_TRACE, ("httpd_continue: try to send more data\n"));
1879 /* If we wrote anything to be sent, go ahead and send it now. */
2209 /* None of the default filenames exist so send back a 404 page */
2215 /** Initialize a http connection with a file to send (if found).
2219 * @param file file structure to send (or NULL if not found)
2308 /* Determine the HTTP headers to send based on the file extension of
2410 /* If this connection has a file open, try to send some more data. If
2414 LWIP_DEBUGF(HTTPD_DEBUG | LWIP_DBG_TRACE, ("http_poll: try to send more data\n"));
2416 /* If we wrote anything to be sent, go ahead and send it now. */
2470 /* all data received, send response or close connection */