Home
last modified time | relevance | path

Searched refs:auth_plain (Results 1 – 4 of 4) sorted by relevance

/third_party/lwip/src/apps/smtp/
Dsmtp.c154 #define SMTP_AUTH_PLAIN_DATA(session) (session)->auth_plain
269 char auth_plain[SMTP_MAX_USERNAME_LEN + SMTP_MAX_PASS_LEN + 3]; member
522 MEMCPY(s->auth_plain + 1, smtp_auth_plain + 1, smtp_auth_plain_len - 1); in smtp_send_mail_alloced()
525 s->username = s->auth_plain; in smtp_send_mail_alloced()
526 s->pass = s->auth_plain; in smtp_send_mail_alloced()
/third_party/python/Lib/
Dsmtplib.py673 def auth_plain(self, challenge=None): member in SMTP
/third_party/python/Doc/library/
Dsmtplib.rst382 ``SMTP.auth_plain``, and ``SMTP.auth_login`` respectively. They all require
/third_party/python/Lib/test/
Dtest_smtplib.py1555 code, response = smtp.auth('plain', smtp.auth_plain)