Lines Matching refs:pop3code
650 int pop3code, in pop3_state_servergreet_resp() argument
662 if(pop3code != '+') { in pop3_state_servergreet_resp()
701 static CURLcode pop3_state_capa_resp(struct connectdata *conn, int pop3code, in pop3_state_capa_resp() argument
714 if(pop3code == '*') { in pop3_state_capa_resp()
763 else if(pop3code == '+') { in pop3_state_capa_resp()
792 int pop3code, in pop3_state_starttls_resp() argument
800 if(pop3code != '+') { in pop3_state_starttls_resp()
802 failf(data, "STARTTLS denied. %c", pop3code); in pop3_state_starttls_resp()
816 int pop3code, in pop3_state_auth_resp() argument
826 result = Curl_sasl_continue(&pop3c->sasl, conn, pop3code, &progress); in pop3_state_auth_resp()
856 static CURLcode pop3_state_apop_resp(struct connectdata *conn, int pop3code, in pop3_state_apop_resp() argument
864 if(pop3code != '+') { in pop3_state_apop_resp()
865 failf(data, "Authentication failed: %d", pop3code); in pop3_state_apop_resp()
877 static CURLcode pop3_state_user_resp(struct connectdata *conn, int pop3code, in pop3_state_user_resp() argument
885 if(pop3code != '+') { in pop3_state_user_resp()
886 failf(data, "Access denied. %c", pop3code); in pop3_state_user_resp()
900 static CURLcode pop3_state_pass_resp(struct connectdata *conn, int pop3code, in pop3_state_pass_resp() argument
908 if(pop3code != '+') { in pop3_state_pass_resp()
909 failf(data, "Access denied. %c", pop3code); in pop3_state_pass_resp()
921 int pop3code, in pop3_state_command_resp() argument
932 if(pop3code != '+') { in pop3_state_command_resp()
980 int pop3code; in pop3_statemach_act() local
995 result = Curl_pp_readresp(sock, pp, &pop3code, &nread); in pop3_statemach_act()
999 if(!pop3code) in pop3_statemach_act()
1005 result = pop3_state_servergreet_resp(conn, pop3code, pop3c->state); in pop3_statemach_act()
1009 result = pop3_state_capa_resp(conn, pop3code, pop3c->state); in pop3_statemach_act()
1013 result = pop3_state_starttls_resp(conn, pop3code, pop3c->state); in pop3_statemach_act()
1017 result = pop3_state_auth_resp(conn, pop3code, pop3c->state); in pop3_statemach_act()
1022 result = pop3_state_apop_resp(conn, pop3code, pop3c->state); in pop3_statemach_act()
1027 result = pop3_state_user_resp(conn, pop3code, pop3c->state); in pop3_statemach_act()
1031 result = pop3_state_pass_resp(conn, pop3code, pop3c->state); in pop3_statemach_act()
1035 result = pop3_state_command_resp(conn, pop3code, pop3c->state); in pop3_statemach_act()