/* The oSIP library implements the Session Initiation Protocol (SIP -rfc3261-) Copyright (C) 2001,2002,2003 Aymeric MOIZARD jack@atosc.org This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This library 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 Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ #include #include void add_gettimeofday (struct timeval *atv, int ms) { int m; if (ms >= 1000000) { atv->tv_usec = 0; m = ms / 1000; } else { atv->tv_usec += ms * 1000; m = atv->tv_usec / 1000000; atv->tv_usec = atv->tv_usec % 1000000; } atv->tv_sec += m; } void min_timercmp (struct timeval *tv1, struct timeval *tv2) { if (tv2->tv_sec == -1) return; if (osip_timercmp (tv1, tv2, >)) { /* replace tv1 with tv2 info */ tv1->tv_sec = tv2->tv_sec; tv1->tv_usec = tv2->tv_usec; } } #if !defined(__PALMOS__) && defined(_WIN32_WCE) #include int osip_gettimeofday (struct timeval *tp, void *tz) { DWORD timemillis = GetTickCount(); tp->tv_sec = timemillis/1000; tp->tv_usec = (timemillis - (tp->tv_sec*1000)) * 1000; return 0; } time_t time (time_t *t) { DWORD timemillis = GetTickCount(); if (timemillis>0) { if (t!=NULL) *t = timemillis/1000; } return timemillis/1000; } #elif !defined(__PALMOS__) && defined(WIN32) #include #include int osip_gettimeofday (struct timeval *tp, void *tz) { struct _timeb timebuffer; _ftime (&timebuffer); tp->tv_sec = (long) timebuffer.time; tp->tv_usec = timebuffer.millitm * 1000; return 0; } #else /* WIN32 */ #ifdef LIBOSIP_INTERNAL #include #define CLOCK_MONOTONIC 1 int __clock_monotonic(struct timeval *tp) { struct timespec ts; int rc = clock_gettime(CLOCK_MONOTONIC, &ts); if (rc) return rc; tp->tv_sec = ts.tv_sec; tp->tv_usec = ts.tv_nsec / 1000; return 0; } #endif #endif /* !WIN32 */