Lines Matching refs:connectdata
92 static CURLcode pop3_regular_transfer(struct connectdata *conn, bool *done);
93 static CURLcode pop3_do(struct connectdata *conn, bool *done);
94 static CURLcode pop3_done(struct connectdata *conn, CURLcode status,
96 static CURLcode pop3_connect(struct connectdata *conn, bool *done);
97 static CURLcode pop3_disconnect(struct connectdata *conn, bool dead);
98 static CURLcode pop3_multi_statemach(struct connectdata *conn, bool *done);
99 static int pop3_getsock(struct connectdata *conn, curl_socket_t *socks,
101 static CURLcode pop3_doing(struct connectdata *conn, bool *dophase_done);
102 static CURLcode pop3_setup_connection(struct connectdata *conn);
103 static CURLcode pop3_parse_url_options(struct connectdata *conn);
104 static CURLcode pop3_parse_url_path(struct connectdata *conn);
105 static CURLcode pop3_parse_custom_request(struct connectdata *conn);
106 static CURLcode pop3_perform_auth(struct connectdata *conn, const char *mech,
108 static CURLcode pop3_continue_auth(struct connectdata *conn, const char *resp);
226 static void pop3_to_pop3s(struct connectdata *conn) in pop3_to_pop3s()
243 static bool pop3_endofresp(struct connectdata *conn, char *line, size_t len, in pop3_endofresp()
312 static void state(struct connectdata *conn, pop3state newstate) in state()
347 static CURLcode pop3_perform_capa(struct connectdata *conn) in pop3_perform_capa()
371 static CURLcode pop3_perform_starttls(struct connectdata *conn) in pop3_perform_starttls()
390 static CURLcode pop3_perform_upgrade_tls(struct connectdata *conn) in pop3_perform_upgrade_tls()
417 static CURLcode pop3_perform_user(struct connectdata *conn) in pop3_perform_user()
445 static CURLcode pop3_perform_apop(struct connectdata *conn) in pop3_perform_apop()
496 static CURLcode pop3_perform_auth(struct connectdata *conn, in pop3_perform_auth()
521 static CURLcode pop3_continue_auth(struct connectdata *conn, in pop3_continue_auth()
537 static CURLcode pop3_perform_authentication(struct connectdata *conn) in pop3_perform_authentication()
585 static CURLcode pop3_perform_command(struct connectdata *conn) in pop3_perform_command()
625 static CURLcode pop3_perform_quit(struct connectdata *conn) in pop3_perform_quit()
639 static CURLcode pop3_state_servergreet_resp(struct connectdata *conn, in pop3_state_servergreet_resp()
691 static CURLcode pop3_state_capa_resp(struct connectdata *conn, int pop3code, in pop3_state_capa_resp()
781 static CURLcode pop3_state_starttls_resp(struct connectdata *conn, in pop3_state_starttls_resp()
805 static CURLcode pop3_state_auth_resp(struct connectdata *conn, in pop3_state_auth_resp()
846 static CURLcode pop3_state_apop_resp(struct connectdata *conn, int pop3code, in pop3_state_apop_resp()
867 static CURLcode pop3_state_user_resp(struct connectdata *conn, int pop3code, in pop3_state_user_resp()
890 static CURLcode pop3_state_pass_resp(struct connectdata *conn, int pop3code, in pop3_state_pass_resp()
910 static CURLcode pop3_state_command_resp(struct connectdata *conn, in pop3_state_command_resp()
966 static CURLcode pop3_statemach_act(struct connectdata *conn) in pop3_statemach_act()
1041 static CURLcode pop3_multi_statemach(struct connectdata *conn, bool *done) in pop3_multi_statemach()
1058 static CURLcode pop3_block_statemach(struct connectdata *conn) in pop3_block_statemach()
1071 static CURLcode pop3_init(struct connectdata *conn) in pop3_init()
1085 static int pop3_getsock(struct connectdata *conn, curl_socket_t *socks, in pop3_getsock()
1101 static CURLcode pop3_connect(struct connectdata *conn, bool *done) in pop3_connect()
1147 static CURLcode pop3_done(struct connectdata *conn, CURLcode status, in pop3_done()
1185 static CURLcode pop3_perform(struct connectdata *conn, bool *connected, in pop3_perform()
1226 static CURLcode pop3_do(struct connectdata *conn, bool *done) in pop3_do()
1254 static CURLcode pop3_disconnect(struct connectdata *conn, bool dead_connection) in pop3_disconnect()
1281 static CURLcode pop3_dophase_done(struct connectdata *conn, bool connected) in pop3_dophase_done()
1290 static CURLcode pop3_doing(struct connectdata *conn, bool *dophase_done) in pop3_doing()
1314 static CURLcode pop3_regular_transfer(struct connectdata *conn, in pop3_regular_transfer()
1340 static CURLcode pop3_setup_connection(struct connectdata *conn) in pop3_setup_connection()
1383 static CURLcode pop3_parse_url_options(struct connectdata *conn) in pop3_parse_url_options()
1442 static CURLcode pop3_parse_url_path(struct connectdata *conn) in pop3_parse_url_path()
1459 static CURLcode pop3_parse_custom_request(struct connectdata *conn) in pop3_parse_custom_request()
1480 CURLcode Curl_pop3_write(struct connectdata *conn, char *str, size_t nread) in Curl_pop3_write()