diff options
author | Steve Holme <steve_holme@hotmail.com> | 2012-05-28 20:21:52 +0100 |
---|---|---|
committer | Steve Holme <steve_holme@hotmail.com> | 2012-05-28 20:21:52 +0100 |
commit | a9d798c4d54e45d1480e4974eeda244fc0c3300e (patch) | |
tree | 2a7ace6c3d310abe72b7c836a9151a18c758de37 /lib/pop3.h | |
parent | 72f4b534c4f57a71c458257c4ea317d557cf59f5 (diff) | |
download | curl-a9d798c4d54e45d1480e4974eeda244fc0c3300e.tar.gz |
pop3: Small code tidy up following authentication work so far
Changed the order of the state machine to match the order of actual
events.
Reworked some comments and function parameter positioning that I missed
the other day.
Diffstat (limited to 'lib/pop3.h')
-rw-r--r-- | lib/pop3.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pop3.h b/lib/pop3.h index 01701e4d7..000284d62 100644 --- a/lib/pop3.h +++ b/lib/pop3.h @@ -29,10 +29,10 @@ typedef enum { POP3_STOP, /* do nothing state, stops the state machine */ POP3_SERVERGREET, /* waiting for the initial greeting immediately after a connect */ + POP3_STARTTLS, POP3_AUTH, POP3_USER, POP3_PASS, - POP3_STARTTLS, POP3_COMMAND, POP3_QUIT, POP3_LAST /* never used */ |