Home
last modified time | relevance | path

Searched refs:apoptimestamp (Results 1 – 2 of 2) sorted by relevance

/external/curl/lib/
Dpop3.c434 Curl_MD5_update(ctxt, (const unsigned char *) pop3c->apoptimestamp, in pop3_perform_apop()
435 curlx_uztoui(strlen(pop3c->apoptimestamp))); in pop3_perform_apop()
634 pop3c->apoptimestamp = (char *)calloc(1, timestamplen + 1); in pop3_state_servergreet_resp()
636 if(!pop3c->apoptimestamp) in pop3_state_servergreet_resp()
640 memcpy(pop3c->apoptimestamp, line + i, timestamplen); in pop3_state_servergreet_resp()
641 pop3c->apoptimestamp[timestamplen] = '\0'; in pop3_state_servergreet_resp()
646 at = strchr(pop3c->apoptimestamp, '@'); in pop3_state_servergreet_resp()
648 Curl_safefree(pop3c->apoptimestamp); in pop3_state_servergreet_resp()
1245 Curl_safefree(pop3c->apoptimestamp); in pop3_disconnect()
Dpop3.h71 char *apoptimestamp; /* APOP timestamp from the server greeting */ member