blob: f999b478b5a305a26e19663887f97f01107e8b21 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
/*
Copyright (C) 2005-2009 Michel de Boer <michel@twinklephone.com>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
// NOTE: the date functions are not thread safe
#include <sys/time.h>
#include "hdr_date.h"
#include "definitions.h"
#include "util.h"
t_hdr_date::t_hdr_date() : t_header("Date") {}
void t_hdr_date::set_date_gm(struct tm *tm) {
populated = true;
date = timegm(tm);
}
void t_hdr_date::set_now(void) {
struct timeval t;
populated = true;
gettimeofday(&t, NULL);
date = t.tv_sec;
}
string t_hdr_date::encode_value(void) const {
string s;
struct tm tm;
if (!populated) return s;
gmtime_r(&date, &tm);
s = weekday2str(tm.tm_wday);
s += ", ";
s += int2str(tm.tm_mday, "%02d");
s += ' ';
s += month2str(tm.tm_mon);
s += ' ';
s += int2str(tm.tm_year + 1900, "%04d");
s += ' ';
s += int2str(tm.tm_hour, "%02d");
s += ':';
s += int2str(tm.tm_min, "%02d");
s += ':';
s += int2str(tm.tm_sec, "%02d");
s += " GMT";
return s;
}
|