blob: de53216a39b6cb329f8e2694dfcb33d9c954742f [file] [log] [blame]
Benny Prijono9033e312005-11-21 02:08:39 +00001/* $Id$ */
2/*
3 * Copyright (C)2003-2006 Benny Prijono <benny@prijono.org>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 */
19#include <pj/os.h>
20#include <linux/time.h>
21
22///////////////////////////////////////////////////////////////////////////////
23
24PJ_DEF(pj_status_t) pj_gettimeofday(pj_time_val *tv)
25{
26 struct timeval tval;
27
28 do_gettimeofday(&tval);
29 tv->sec = tval.tv_sec;
30 tv->msec = tval.tv_usec / 1000;
31
32 return 0;
33}
34
35PJ_DEF(pj_status_t) pj_time_decode(const pj_time_val *tv, pj_parsed_time *pt)
36{
37 pt->year = 2005;
38 pt->mon = 8;
39 pt->day = 20;
40 pt->hour = 16;
41 pt->min = 30;
42 pt->sec = 30;
43 pt->wday = 3;
44 pt->yday = 200;
45 pt->msec = 777;
46
47 return -1;
48}
49
50/**
51 * Encode parsed time to time value.
52 */
53PJ_DEF(pj_status_t) pj_time_encode(const pj_parsed_time *pt, pj_time_val *tv);
54
55/**
56 * Convert local time to GMT.
57 */
58PJ_DEF(pj_status_t) pj_time_local_to_gmt(pj_time_val *tv);
59
60/**
61 * Convert GMT to local time.
62 */
63PJ_DEF(pj_status_t) pj_time_gmt_to_local(pj_time_val *tv);
64
65