| Server IP : 216.92.14.13 / Your IP : 216.73.216.171 Web Server : Apache System : Linux vps4089.pairvps.com 5.15.0-190-generic #200-Ubuntu SMP Fri Aug 7 15:06:04 UTC 2026 x86_64 User : rmlac2fmr ( 1040637) PHP Version : 8.2.32 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/local/include/dovecot/ |
Upload File : |
#ifndef HTTP_DATE_H #define HTTP_DATE_H /* Parses HTTP-date string into time_t timestamp. */ bool http_date_parse(const unsigned char *data, size_t size, time_t *timestamp_r); /* Equal to http_date_parse, but writes uncompensated timestamp to tm_r. */ bool http_date_parse_tm(const unsigned char *data, size_t size, struct tm *tm_r); /* Create HTTP-date string from given time struct. */ const char *http_date_create_tm(struct tm *tm); /* Create HTTP-date string from given time. */ const char *http_date_create(time_t timestamp); #endif