OpenVPN
mock_win32_execve.c
Go to the documentation of this file.
1/*
2 * OpenVPN -- An application to securely tunnel IP networks
3 * over a single TCP/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) 2023-2025 OpenVPN Inc <sales@openvpn.net>
9 * Copyright (C) 2023-2025 Arne Schwabe <arne@rfc2549.org>
10 *
11 *
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License version 2
14 * as published by the Free Software Foundation.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License along
22 * with this program; if not, see <https://www.gnu.org/licenses/>.
23 */
24
25#include "config.h"
26#include "syshead.h"
27
28#include "win32.h"
29
30#ifdef _WIN32
31int
32openvpn_execve(const struct argv *a, const struct env_set *es, const unsigned int flags)
33{
34 ASSERT(0);
35}
36#endif
int openvpn_execve(const struct argv *a, const struct env_set *es, const unsigned int flags)
#define ASSERT(x)
Definition error.h:217
Definition argv.h:35
struct env_set * es