2003-04-16 19:04:58 +02:00
|
|
|
/* Copyright 2003 Roger Dingledine */
|
|
|
|
/* See LICENSE for licensing information */
|
|
|
|
/* $Id$ */
|
|
|
|
|
|
|
|
#ifndef __UTIL_H
|
|
|
|
#define __UTIL_H
|
|
|
|
|
2003-08-12 05:08:41 +02:00
|
|
|
#include "orconfig.h"
|
|
|
|
|
|
|
|
#ifdef HAVE_SYS_TIME_H
|
2003-04-16 19:04:58 +02:00
|
|
|
#include <sys/time.h>
|
2003-08-12 05:08:41 +02:00
|
|
|
#endif
|
|
|
|
#ifdef HAVE_TIME_H
|
|
|
|
#include <time.h>
|
|
|
|
#endif
|
|
|
|
#ifndef HAVE_GETTIMEOFDAY
|
2003-08-12 05:16:15 +02:00
|
|
|
#ifdef HAVE_FTIME
|
2003-08-12 05:08:41 +02:00
|
|
|
#include <sys/timeb.h>
|
|
|
|
#define timeval timeb
|
|
|
|
#define tv_sec time
|
|
|
|
#define tv_usec millitm
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef _MSC_VER
|
|
|
|
/* Windows names string functions funnily. */
|
|
|
|
#define strncasecmp strnicmp
|
|
|
|
#define strcasecmp stricmp
|
|
|
|
#define INLINE __inline
|
|
|
|
#else
|
|
|
|
#define INLINE inline
|
|
|
|
#endif
|
2003-04-16 19:04:58 +02:00
|
|
|
|
2003-05-20 08:37:34 +02:00
|
|
|
void *tor_malloc(size_t size);
|
|
|
|
|
2003-04-16 19:04:58 +02:00
|
|
|
/* Same as gettimeofday, but no need to check exit value. */
|
|
|
|
void my_gettimeofday(struct timeval *timeval);
|
|
|
|
/* Returns the number of microseconds between start and end. Requires that
|
|
|
|
* end >= start, and that the number of microseconds < LONG_MAX. */
|
|
|
|
long tv_udiff(struct timeval *start, struct timeval *end);
|
|
|
|
|
|
|
|
void tv_addms(struct timeval *a, long ms);
|
|
|
|
void tv_add(struct timeval *a, struct timeval *b);
|
|
|
|
int tv_cmp(struct timeval *a, struct timeval *b);
|
|
|
|
|
2003-08-12 05:08:41 +02:00
|
|
|
void set_socket_nonblocking(int socket);
|
|
|
|
|
2003-04-16 19:04:58 +02:00
|
|
|
#endif
|