Lines Matching refs:pop3code
648 int pop3code, in pop3_state_servergreet_resp() argument
659 if(pop3code != '+') { in pop3_state_servergreet_resp()
707 static CURLcode pop3_state_capa_resp(struct Curl_easy *data, int pop3code, in pop3_state_capa_resp() argument
719 if(pop3code == '*') { in pop3_state_capa_resp()
771 if(pop3code != '+') in pop3_state_capa_resp()
776 else if(pop3code == '+' && pop3c->tls_supported) in pop3_state_capa_resp()
794 int pop3code, in pop3_state_starttls_resp() argument
804 if(pop3code != '+') { in pop3_state_starttls_resp()
820 int pop3code, in pop3_state_auth_resp() argument
830 result = Curl_sasl_continue(&pop3c->sasl, data, pop3code, &progress); in pop3_state_auth_resp()
860 static CURLcode pop3_state_apop_resp(struct Curl_easy *data, int pop3code, in pop3_state_apop_resp() argument
866 if(pop3code != '+') { in pop3_state_apop_resp()
867 failf(data, "Authentication failed: %d", pop3code); in pop3_state_apop_resp()
879 static CURLcode pop3_state_user_resp(struct Curl_easy *data, int pop3code, in pop3_state_user_resp() argument
886 if(pop3code != '+') { in pop3_state_user_resp()
887 failf(data, "Access denied. %c", pop3code); in pop3_state_user_resp()
901 static CURLcode pop3_state_pass_resp(struct Curl_easy *data, int pop3code, in pop3_state_pass_resp() argument
907 if(pop3code != '+') { in pop3_state_pass_resp()
908 failf(data, "Access denied. %c", pop3code); in pop3_state_pass_resp()
920 int pop3code, in pop3_state_command_resp() argument
931 if(pop3code != '+') { in pop3_state_command_resp()
980 int pop3code; in pop3_statemachine() local
996 result = Curl_pp_readresp(data, sock, pp, &pop3code, &nread); in pop3_statemachine()
1000 if(!pop3code) in pop3_statemachine()
1006 result = pop3_state_servergreet_resp(data, pop3code, pop3c->state); in pop3_statemachine()
1010 result = pop3_state_capa_resp(data, pop3code, pop3c->state); in pop3_statemachine()
1014 result = pop3_state_starttls_resp(data, conn, pop3code, pop3c->state); in pop3_statemachine()
1018 result = pop3_state_auth_resp(data, pop3code, pop3c->state); in pop3_statemachine()
1023 result = pop3_state_apop_resp(data, pop3code, pop3c->state); in pop3_statemachine()
1028 result = pop3_state_user_resp(data, pop3code, pop3c->state); in pop3_statemachine()
1032 result = pop3_state_pass_resp(data, pop3code, pop3c->state); in pop3_statemachine()
1036 result = pop3_state_command_resp(data, pop3code, pop3c->state); in pop3_statemachine()