aboutsummaryrefslogtreecommitdiff
path: root/src/nat/libnatpmp/getgateway.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/nat/libnatpmp/getgateway.h')
-rw-r--r--src/nat/libnatpmp/getgateway.h32
1 files changed, 0 insertions, 32 deletions
diff --git a/src/nat/libnatpmp/getgateway.h b/src/nat/libnatpmp/getgateway.h
deleted file mode 100644
index 35dc1e93a..000000000
--- a/src/nat/libnatpmp/getgateway.h
+++ /dev/null
@@ -1,32 +0,0 @@
1/* $Id: getgateway.h,v 1.3 2008/07/02 22:33:06 nanard Exp $ */
2/* libnatpmp
3 * Copyright (c) 2007, Thomas BERNARD <miniupnp@free.fr>
4 *
5 * Permission to use, copy, modify, and/or distribute this software for any
6 * purpose with or without fee is hereby granted, provided that the above
7 * copyright notice and this permission notice appear in all copies.
8 *
9 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */
16#ifndef __GETGATEWAY_H__
17#define __GETGATEWAY_H__
18
19#ifdef WIN32
20#include <stdint.h>
21#define in_addr_t uint32_t
22#endif
23#include "declspec.h"
24
25/* getdefaultgateway() :
26 * addr must point to an array of at least 16 u_int8 elements
27 * return value :
28 * 0 : success
29 * -1 : failure */
30LIBSPEC int getdefaultgateway (int *af, uint8_t addr[16]);
31
32#endif