Home
last modified time | relevance | path

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

/third_party/curl/lib/
Dpop3.c452 Curl_MD5_update(ctxt, (const unsigned char *) pop3c->apoptimestamp, in pop3_perform_apop()
453 curlx_uztoui(strlen(pop3c->apoptimestamp))); in pop3_perform_apop()
674 pop3c->apoptimestamp = (char *)calloc(1, timestamplen + 1); in pop3_state_servergreet_resp()
676 if(!pop3c->apoptimestamp) in pop3_state_servergreet_resp()
680 memcpy(pop3c->apoptimestamp, line + i, timestamplen); in pop3_state_servergreet_resp()
681 pop3c->apoptimestamp[timestamplen] = '\0'; in pop3_state_servergreet_resp()
686 at = strchr(pop3c->apoptimestamp, '@'); in pop3_state_servergreet_resp()
688 Curl_safefree(pop3c->apoptimestamp); in pop3_state_servergreet_resp()
1281 Curl_safefree(pop3c->apoptimestamp); in pop3_disconnect()
Dpop3.h70 char *apoptimestamp; /* APOP timestamp from the server greeting */ member