Lines Matching refs:pop3code

706                                             int pop3code,  in pop3_state_servergreet_resp()  argument
717 if(pop3code != '+') { in pop3_state_servergreet_resp()
756 static CURLcode pop3_state_capa_resp(struct Curl_easy *data, int pop3code, in pop3_state_capa_resp() argument
768 if(pop3code == '*') { in pop3_state_capa_resp()
820 if(pop3code != '+') in pop3_state_capa_resp()
825 else if(pop3code == '+' && pop3c->tls_supported) in pop3_state_capa_resp()
843 int pop3code, in pop3_state_starttls_resp() argument
853 if(pop3code != '+') { in pop3_state_starttls_resp()
869 int pop3code, in pop3_state_auth_resp() argument
879 result = Curl_sasl_continue(&pop3c->sasl, data, pop3code, &progress); in pop3_state_auth_resp()
909 static CURLcode pop3_state_apop_resp(struct Curl_easy *data, int pop3code, in pop3_state_apop_resp() argument
915 if(pop3code != '+') { in pop3_state_apop_resp()
916 failf(data, "Authentication failed: %d", pop3code); in pop3_state_apop_resp()
928 static CURLcode pop3_state_user_resp(struct Curl_easy *data, int pop3code, in pop3_state_user_resp() argument
935 if(pop3code != '+') { in pop3_state_user_resp()
936 failf(data, "Access denied. %c", pop3code); in pop3_state_user_resp()
950 static CURLcode pop3_state_pass_resp(struct Curl_easy *data, int pop3code, in pop3_state_pass_resp() argument
956 if(pop3code != '+') { in pop3_state_pass_resp()
957 failf(data, "Access denied. %c", pop3code); in pop3_state_pass_resp()
969 int pop3code, in pop3_state_command_resp() argument
980 if(pop3code != '+') { in pop3_state_command_resp()
1033 int pop3code; in pop3_statemachine() local
1049 result = Curl_pp_readresp(data, FIRSTSOCKET, pp, &pop3code, &nread); in pop3_statemachine()
1053 if(!pop3code) in pop3_statemachine()
1059 result = pop3_state_servergreet_resp(data, pop3code, pop3c->state); in pop3_statemachine()
1063 result = pop3_state_capa_resp(data, pop3code, pop3c->state); in pop3_statemachine()
1067 result = pop3_state_starttls_resp(data, conn, pop3code, pop3c->state); in pop3_statemachine()
1071 result = pop3_state_auth_resp(data, pop3code, pop3c->state); in pop3_statemachine()
1076 result = pop3_state_apop_resp(data, pop3code, pop3c->state); in pop3_statemachine()
1081 result = pop3_state_user_resp(data, pop3code, pop3c->state); in pop3_statemachine()
1085 result = pop3_state_pass_resp(data, pop3code, pop3c->state); in pop3_statemachine()
1089 result = pop3_state_command_resp(data, pop3code, pop3c->state); in pop3_statemachine()