Lines Matching refs:pop3
67 #include "pop3.h"
168 /* SASL parameters for the pop3 protocol */
596 struct POP3 *pop3 = data->req.p.pop3;
600 if(pop3->id[0] == '\0' || data->set.list_only) {
603 if(pop3->id[0] != '\0')
605 pop3->transfer = PPTRANSFER_INFO;
611 if(pop3->id[0] != '\0')
613 (pop3->custom && pop3->custom[0] != '\0' ?
614 pop3->custom : command), pop3->id);
617 (pop3->custom && pop3->custom[0] != '\0' ?
618 pop3->custom : command));
658 failf(data, "Got unexpected pop3-server response");
914 struct POP3 *pop3 = data->req.p.pop3;
935 if(pop3->transfer == PPTRANSFER_BODY) {
1086 struct POP3 *pop3;
1088 pop3 = data->req.p.pop3 = calloc(1, sizeof(struct POP3));
1089 if(!pop3)
1159 struct POP3 *pop3 = data->req.p.pop3;
1163 if(!pop3)
1172 Curl_safefree(pop3->id);
1173 Curl_safefree(pop3->custom);
1176 pop3->transfer = PPTRANSFER_BODY;
1193 struct POP3 *pop3 = data->req.p.pop3;
1199 pop3->transfer = PPTRANSFER_INFO;
1421 struct POP3 *pop3 = data->req.p.pop3;
1425 return Curl_urldecode(path, 0, &pop3->id, NULL, REJECT_CTRL);
1437 struct POP3 *pop3 = data->req.p.pop3;
1442 result = Curl_urldecode(custom, 0, &pop3->custom, NULL, REJECT_CTRL);