summaryrefslogtreecommitdiff
path: root/lib/pop3.c
diff options
context:
space:
mode:
authorSteve Holme <steve_holme@hotmail.com>2013-02-08 23:07:20 +0000
committerSteve Holme <steve_holme@hotmail.com>2013-02-08 23:07:20 +0000
commit21657823ea3df5d55ddf3ce290d8468858aee1a4 (patch)
tree01863b7454198efa88ae5978a1c29b2b3d867d81 /lib/pop3.c
parent3bb45aa7f50274b24b60d0f077d3f2f2ef8a6ea7 (diff)
downloadcurl-21657823ea3df5d55ddf3ce290d8468858aee1a4.tar.gz
pop3: Reworked pop3_endofresp() to simplify it little
Reworked pop3_endofresp() to simplify it and provide consistency between imap and smtp.
Diffstat (limited to 'lib/pop3.c')
-rw-r--r--lib/pop3.c97
1 files changed, 47 insertions, 50 deletions
diff --git a/lib/pop3.c b/lib/pop3.c
index a268d399c..a21bb5162 100644
--- a/lib/pop3.c
+++ b/lib/pop3.c
@@ -253,7 +253,7 @@ static int pop3_endofresp(struct pingpong *pp, int *resp)
/* Are we processing CAPA command responses? */
else if(pop3c->state == POP3_CAPA) {
- /* Do we have the terminating character? */
+ /* Do we have the terminating line? */
if(len >= 1 && !memcmp(line, ".", 1)) {
*resp = '+';
@@ -261,68 +261,65 @@ static int pop3_endofresp(struct pingpong *pp, int *resp)
}
/* Does the server support clear text authentication? */
- if(len >= 4 && !memcmp(line, "USER", 4)) {
+ if(len >= 4 && !memcmp(line, "USER", 4))
pop3c->authtypes |= POP3_TYPE_CLEARTEXT;
- return FALSE;
- }
/* Does the server support APOP authentication? */
- if(len >= 4 && !memcmp(line, "APOP", 4)) {
+ else if(len >= 4 && !memcmp(line, "APOP", 4))
pop3c->authtypes |= POP3_TYPE_APOP;
- return FALSE;
- }
/* Does the server support SASL based authentication? */
- if(len < 4 || memcmp(line, "SASL", 4))
- return FALSE;
-
- pop3c->authtypes |= POP3_TYPE_SASL;
+ else if(len >= 4 && !memcmp(line, "SASL", 4)) {
+ pop3c->authtypes |= POP3_TYPE_SASL;
- /* Advance past the SASL keyword */
- line += 4;
- len -= 4;
+ /* Advance past the SASL keyword */
+ line += 4;
+ len -= 4;
- /* Loop through the data line */
- for(;;) {
- while(len &&
- (*line == ' ' || *line == '\t' ||
- *line == '\r' || *line == '\n')) {
+ /* Loop through the data line */
+ for(;;) {
+ while(len &&
+ (*line == ' ' || *line == '\t' ||
+ *line == '\r' || *line == '\n')) {
- if(*line == '\n')
- return FALSE;
+ if(*line == '\n')
+ return FALSE;
- line++;
- len--;
- }
+ line++;
+ len--;
+ }
- if(!len)
- break;
+ if(!len)
+ break;
- /* Extract the word */
- for(wordlen = 0; wordlen < len && line[wordlen] != ' ' &&
- line[wordlen] != '\t' && line[wordlen] != '\r' &&
- line[wordlen] != '\n';)
- wordlen++;
-
- /* Test the word for a matching authentication mechanism */
- if(wordlen == 5 && !memcmp(line, "LOGIN", 5))
- pop3c->authmechs |= SASL_MECH_LOGIN;
- else if(wordlen == 5 && !memcmp(line, "PLAIN", 5))
- pop3c->authmechs |= SASL_MECH_PLAIN;
- else if(wordlen == 8 && !memcmp(line, "CRAM-MD5", 8))
- pop3c->authmechs |= SASL_MECH_CRAM_MD5;
- else if(wordlen == 10 && !memcmp(line, "DIGEST-MD5", 10))
- pop3c->authmechs |= SASL_MECH_DIGEST_MD5;
- else if(wordlen == 6 && !memcmp(line, "GSSAPI", 6))
- pop3c->authmechs |= SASL_MECH_GSSAPI;
- else if(wordlen == 8 && !memcmp(line, "EXTERNAL", 8))
- pop3c->authmechs |= SASL_MECH_EXTERNAL;
- else if(wordlen == 4 && !memcmp(line, "NTLM", 4))
- pop3c->authmechs |= SASL_MECH_NTLM;
-
- line += wordlen;
- len -= wordlen;
+ /* Extract the word */
+ for(wordlen = 0; wordlen < len && line[wordlen] != ' ' &&
+ line[wordlen] != '\t' && line[wordlen] != '\r' &&
+ line[wordlen] != '\n';)
+ wordlen++;
+
+ /* Test the word for a matching authentication mechanism */
+ if(wordlen == 5 && !memcmp(line, "LOGIN", 5))
+ pop3c->authmechs |= SASL_MECH_LOGIN;
+ else if(wordlen == 5 && !memcmp(line, "PLAIN", 5))
+ pop3c->authmechs |= SASL_MECH_PLAIN;
+ else if(wordlen == 8 && !memcmp(line, "CRAM-MD5", 8))
+ pop3c->authmechs |= SASL_MECH_CRAM_MD5;
+ else if(wordlen == 10 && !memcmp(line, "DIGEST-MD5", 10))
+ pop3c->authmechs |= SASL_MECH_DIGEST_MD5;
+ else if(wordlen == 6 && !memcmp(line, "GSSAPI", 6))
+ pop3c->authmechs |= SASL_MECH_GSSAPI;
+ else if(wordlen == 8 && !memcmp(line, "EXTERNAL", 8))
+ pop3c->authmechs |= SASL_MECH_EXTERNAL;
+ else if(wordlen == 4 && !memcmp(line, "NTLM", 4))
+ pop3c->authmechs |= SASL_MECH_NTLM;
+
+ line += wordlen;
+ len -= wordlen;
+ }
}
+
+ return FALSE;
}
if((len < 1 || memcmp("+", line, 1)) &&