Lines Matching refs:data
257 /** amount of data from body already sent */
296 static err_t smtp_verify(const char *data, size_t data_len, u8_t linebreaks_allowed);
521 /* copy auth data, ensuring the first byte is always zero */
636 * WARNING: the above data must stay untouched until the callback function is
721 smtp_verify(const char *data, size_t data_len, u8_t linebreaks_allowed)
726 char current = data[i];
728 LWIP_DEBUGF(SMTP_DEBUG_WARN, ("smtp_verify: no 8-bit data supported: %s\n", data));
733 LWIP_DEBUGF(SMTP_DEBUG_WARN, ("smtp_verify: found CR where no linebreaks allowed: %s\n", data));
737 LWIP_DEBUGF(SMTP_DEBUG_WARN, ("smtp_verify: found double CR: %s\n", data));
744 LWIP_DEBUGF(SMTP_DEBUG_WARN, ("smtp_verify: found LF without CR before: %s\n", data));
1050 * create data to send out (to tx_buf), set tx_data_len correctly
1213 /** If in state SMTP_BODY, try to send more body data */
1285 /* received data */
1313 LWIP_DEBUGF(SMTP_DEBUG_WARN, ("smtp_process: unknown data received (%s)\n",
1429 /* try to stream-send body data right now */
1432 /* sent out all data, delete structure */
1441 /** Elementary sub-function to send data
1443 * @returns: BDHALLDATASENT all data has been written
1444 * BDHSOMEDATASENT some data has been written
1445 * 0 no data has been written
1465 /** Same as smtp_send_mail_static, but uses a callback function to send body data
1529 /* all data on buffer has been queued, resume execution */