Home
last modified time | relevance | path

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

/external/curl/lib/
Dpop3.c435 Curl_MD5_update(ctxt, (const unsigned char *) pop3c->apoptimestamp, in pop3_perform_apop()
436 curlx_uztoui(strlen(pop3c->apoptimestamp))); in pop3_perform_apop()
637 pop3c->apoptimestamp = (char *)calloc(1, timestamplen + 1); in pop3_state_servergreet_resp()
639 if(!pop3c->apoptimestamp) in pop3_state_servergreet_resp()
643 memcpy(pop3c->apoptimestamp, line + i, timestamplen); in pop3_state_servergreet_resp()
644 pop3c->apoptimestamp[timestamplen] = '\0'; in pop3_state_servergreet_resp()
649 at = strchr(pop3c->apoptimestamp, '@'); in pop3_state_servergreet_resp()
651 Curl_safefree(pop3c->apoptimestamp); in pop3_state_servergreet_resp()
1248 Curl_safefree(pop3c->apoptimestamp); in pop3_disconnect()
Dpop3.h71 char *apoptimestamp; /* APOP timestamp from the server greeting */ member