Searched refs:smtp_auth_plain (Results 1 - 1 of 1) sorted by relevance

/seL4-camkes-master/projects/lwip/src/apps/smtp/
H A Dsmtp.c159 #define SMTP_AUTH_PLAIN_DATA(session) smtp_auth_plain
270 /** Length of smtp_auth_plain string (cannot use strlen since it includes \0) */
291 static char smtp_auth_plain[SMTP_MAX_USERNAME_LEN + SMTP_MAX_PASS_LEN + 3]; variable
292 /** Length of smtp_auth_plain string (cannot use strlen since it includes \0) */
409 memset(smtp_auth_plain, 0xfa, 64);
430 *smtp_auth_plain = 0;
432 smtp_username = smtp_auth_plain + 1;
436 smtp_pass = smtp_auth_plain + uname_len + 2;
522 MEMCPY(s->auth_plain + 1, smtp_auth_plain + 1, smtp_auth_plain_len - 1);
528 s->username += smtp_username - smtp_auth_plain;
[all...]

Completed in 26 milliseconds