OpenVPN
compat.h
Go to the documentation of this file.
1/*
2 * OpenVPN -- An application to securely tunnel IP networks
3 * over a single UDP port, with support for SSL/TLS-based
4 * session authentication and key exchange,
5 * packet encryption, packet authentication, and
6 * packet compression.
7 *
8 * Copyright (C) 2011 - David Sommerseth <davids@redhat.com>
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2
12 * as published by the Free Software Foundation.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, see <https://www.gnu.org/licenses/>.
21 */
22
23#ifndef COMPAT_H
24#define COMPAT_H
25
26#ifdef _WIN32
27#include <winsock2.h>
28#include <ws2tcpip.h>
29#endif
30
31#ifdef HAVE_SYS_TIME_H
32#include <sys/time.h>
33#endif
34
35#ifdef HAVE_SYS_SOCKET_H
36#include <sys/socket.h>
37#endif
38
39#ifndef HAVE_DIRNAME
40char *dirname(char *str);
41
42#endif /* HAVE_DIRNAME */
43
44#ifndef HAVE_BASENAME
45char *basename(char *str);
46
47#endif /* HAVE_BASENAME */
48
49#ifndef HAVE_GETTIMEOFDAY
50int gettimeofday(struct timeval *tv, void *tz);
51
52#endif
53
54#ifndef HAVE_DAEMON
55int daemon(int nochdir, int noclose);
56
57#endif
58
59#ifndef HAVE_STRSEP
60char *strsep(char **stringp, const char *delim);
61
62#endif
63
64#endif /* COMPAT_H */
char * strsep(char **stringp, const char *delim)
char * dirname(char *str)
char * basename(char *str)
int daemon(int nochdir, int noclose)