Lines Matching refs:auth
23 -> set both username and password as NULL if no auth needed
521 /* copy auth data, ensuring the first byte is always zero */
1057 u16_t auth = pbuf_strstr(s->p, SMTP_KEYWORD_AUTH_SP);
1058 if (auth == 0xFFFF) {
1059 auth = pbuf_strstr(s->p, SMTP_KEYWORD_AUTH_EQ);
1061 if (auth != 0xFFFF) {
1062 u16_t crlf = pbuf_memfind(s->p, SMTP_CRLF, SMTP_CRLF_LEN, auth);
1063 if ((crlf != 0xFFFF) && (crlf > auth)) {
1065 u16_t copied = pbuf_copy_partial(s->p, s->tx_buf, (u16_t)(crlf - auth), auth);