Searched refs:tx_buf (Results 1 – 1 of 1) sorted by relevance
/btstack/3rd-party/lwip/core/src/apps/smtp/ |
H A D | smtp.c | 239 char tx_buf[SMTP_TX_BUF_LEN + 1]; member 1042 SMEMCPY(s->tx_buf, SMTP_CMD_EHLO_1, SMTP_CMD_EHLO_1_LEN); in smtp_prepare_helo() 1043 MEMCPY(&s->tx_buf[SMTP_CMD_EHLO_1_LEN], ipa, ipa_len); in smtp_prepare_helo() 1044 SMEMCPY(&s->tx_buf[SMTP_CMD_EHLO_1_LEN + ipa_len], SMTP_CMD_EHLO_2, SMTP_CMD_EHLO_2_LEN); in smtp_prepare_helo() 1065 u16_t copied = pbuf_copy_partial(s->p, s->tx_buf, (u16_t)(crlf - auth), auth); in smtp_prepare_auth_or_mail() 1067 char *sep = s->tx_buf + SMTP_KEYWORD_AUTH_LEN; in smtp_prepare_auth_or_mail() 1068 s->tx_buf[copied] = 0; in smtp_prepare_auth_or_mail() 1074 SMEMCPY(s->tx_buf, SMTP_CMD_AUTHPLAIN_1, SMTP_CMD_AUTHPLAIN_1_LEN); in smtp_prepare_auth_or_mail() 1077 auth_len = smtp_base64_encode(&s->tx_buf[SMTP_CMD_AUTHPLAIN_1_LEN], in smtp_prepare_auth_or_mail() 1082 SMEMCPY(&s->tx_buf[SMTP_CMD_AUTHPLAIN_1_LEN + auth_len], SMTP_CMD_AUTHPLAIN_2, in smtp_prepare_auth_or_mail() [all …]
|