mirror of
https://github.com/curl/curl.git
synced 2026-04-14 22:41:40 +03:00
pop3: Added support for apop authentication
This commit is contained in:
parent
4e430a8a16
commit
c09c621af7
3 changed files with 98 additions and 4 deletions
|
|
@ -40,6 +40,7 @@ typedef enum {
|
|||
POP3_AUTH_NTLM,
|
||||
POP3_AUTH_NTLM_TYPE2MSG,
|
||||
POP3_AUTH,
|
||||
POP3_APOP,
|
||||
POP3_USER,
|
||||
POP3_PASS,
|
||||
POP3_COMMAND,
|
||||
|
|
@ -60,6 +61,7 @@ struct pop3_conn {
|
|||
unsigned int authtypes; /* Supported authentication types */
|
||||
unsigned int authmechs; /* Accepted SASL authentication mechanisms */
|
||||
unsigned int authused; /* SASL auth mechanism used for the connection */
|
||||
char *apoptimestamp; /* APOP timestamp from the server greeting */
|
||||
pop3state state; /* Always use pop3.c:state() to change state! */
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue