blob: 7d695adaa9ea3bc93817254fbd71f6d4aa5b169b [file] [log] [blame]
Benny Prijonoe0312a72005-11-18 00:16:43 +00001/* $Id$ */
Benny Prijonoe7224612005-11-13 19:40:44 +00002/*
Benny Prijonoe0312a72005-11-18 00:16:43 +00003 * Copyright (C)2003-2006 Benny Prijono <benny@prijono.org>
Benny Prijonoe7224612005-11-13 19:40:44 +00004 *
Benny Prijonoe0312a72005-11-18 00:16:43 +00005 * 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.
Benny Prijonoe7224612005-11-13 19:40:44 +00009 *
Benny Prijonoe0312a72005-11-18 00:16:43 +000010 * This program is distributed in the hope that it will be useful,
Benny Prijonoe7224612005-11-13 19:40:44 +000011 * but WITHOUT ANY WARRANTY; without even the implied warranty of
Benny Prijonoe0312a72005-11-18 00:16:43 +000012 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
Benny Prijonoe7224612005-11-13 19:40:44 +000014 *
Benny Prijonoe0312a72005-11-18 00:16:43 +000015 * 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
Benny Prijonoe7224612005-11-13 19:40:44 +000018 */
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