summaryrefslogtreecommitdiffstats
path: root/src/fastd_config.h.in
diff options
context:
space:
mode:
authorMatthias Schiffer <mschiffer@universe-factory.net>2015-10-20 23:10:09 +0200
committerMatthias Schiffer <mschiffer@universe-factory.net>2015-10-20 23:10:09 +0200
commit11bca5a7af4b448ee0a37cd243e34ecd0e652b3d (patch)
tree04a51ccec3f2db4d16591698c76c4c56b893ec1b /src/fastd_config.h.in
parent64d0bef9efd4a82b7a132b490328c80e67431041 (diff)
downloadfastd-11bca5a7af4b448ee0a37cd243e34ecd0e652b3d.tar
fastd-11bca5a7af4b448ee0a37cd243e34ecd0e652b3d.zip
Improve include_directories to prevent conflicts between system and fastd headers
In in-tree builds, fastd's poll.h was conflicting with the system one on non-Linux systems.
Diffstat (limited to 'src/fastd_config.h.in')
-rw-r--r--src/fastd_config.h.in164
1 files changed, 0 insertions, 164 deletions
diff --git a/src/fastd_config.h.in b/src/fastd_config.h.in
deleted file mode 100644
index 5f9c868..0000000
--- a/src/fastd_config.h.in
+++ /dev/null
@@ -1,164 +0,0 @@
-/*
- Copyright (c) 2012-2015, Matthias Schiffer <mschiffer@universe-factory.net>
- All rights reserved.
-
- Redistribution and use in source and binary forms, with or without
- modification, are permitted provided that the following conditions are met:
-
- 1. Redistributions of source code must retain the above copyright notice,
- this list of conditions and the following disclaimer.
- 2. Redistributions in binary form must reproduce the above copyright notice,
- this list of conditions and the following disclaimer in the documentation
- and/or other materials provided with the distribution.
-
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
- AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
- FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
- DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
- SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
- CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
- OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-*/
-
-/**
- \file
-
- Generated configuration
-*/
-
-
-#pragma once
-
-/** Defined if the platform supports the AI_ADDRCONFIG flag to getaddrinfo() */
-#cmakedefine HAVE_AI_ADDRCONFIG
-
-/** Defined if the platform defines get_current_dir_name() */
-#cmakedefine HAVE_GET_CURRENT_DIR_NAME
-
-/** Defined if <endian.h> exists */
-#cmakedefine HAVE_ENDIAN_H
-
-/** Defined if <sys/endian.h> exists */
-#cmakedefine HAVE_SYS_ENDIAN_H
-
-/** Defined if be32toh etc. exist */
-#cmakedefine HAVE_LINUX_ENDIAN
-
-/** Defined if the platform supports SO_BINDTODEVICE */
-#cmakedefine USE_BINDTODEVICE
-
-/** Defined if the platform supports epoll */
-#cmakedefine USE_EPOLL
-
-/** Defined if the platform uses select instead of poll */
-#cmakedefine USE_SELECT
-
-/** Defined if the platform supports SO_FREEBIND */
-#cmakedefine USE_FREEBIND
-
-/** Defined if the platform supports IP_MTU_DISCOVER */
-#cmakedefine USE_PMTU
-
-/** Defined if the platform supports IP_PKTINFO */
-#cmakedefine USE_PKTINFO
-
-/** Defined if the platform supports SO_MARK */
-#cmakedefine USE_PACKET_MARK
-
-/** Defined if the platform supports settings users and groups */
-#cmakedefine USE_USER
-
-/** Defined if the platform supports binding on IPv4 and IPv6 with a single socket */
-#cmakedefine USE_MULTIAF_BIND
-
-
-/** Defined if POSIX capability support is enabled */
-#cmakedefine WITH_CAPABILITIES
-
-/** Defined if support for setting user/group related options on the command line is enabled */
-#cmakedefine WITH_CMDLINE_USER
-
-/** Defined if support for setting logging related options on the command line is enabled */
-#cmakedefine WITH_CMDLINE_LOGGING
-
-/** Defined if support for setting related to the VPN operation (like mode, interface, encryption method) on the command line is enabled */
-#cmakedefine WITH_CMDLINE_OPERATION
-
-/** Defined if support for setting handler scripts (e.g. --on-up) on the command line is enabled */
-#cmakedefine WITH_CMDLINE_COMMANDS
-
-/** Defined if on-verify support is enabled */
-#cmakedefine WITH_DYNAMIC_PEERS
-
-/** Defined if status socket support is enabled */
-#cmakedefine WITH_STATUS_SOCKET
-
-/** Defined if systemd support is enabled */
-#cmakedefine ENABLE_SYSTEMD
-
-
-/** Defined if libsodium is used */
-#cmakedefine HAVE_LIBSODIUM
-
-/** Defined if OpenSSL is used */
-#cmakedefine ENABLE_OPENSSL
-
-
-/** The maximum depth of nested includes in config files */
-#define MAX_CONFIG_DEPTH @MAX_CONFIG_DEPTH_NUM@
-
-
-/** The interval of periodic maintenance tasks */
-#define MAINTENANCE_INTERVAL 10000 /* 10 seconds */
-
-/** The time after which a keepalive should be sent */
-#define KEEPALIVE_TIMEOUT 15000 /* 15 seconds */
-
-/** The time after with a peer is reset if no traffic is received from it */
-#define PEER_STALE_TIME 90000 /* 90 seconds */
-
-/** The time after which a peer's ethernet address is forgotten if it is not seen */
-#define ETH_ADDR_STALE_TIME 300000 /* 5 minutes */
-
-
-/** The time after a packet is received and no packets with lower sequence numbers are accepted anymore */
-#define REORDER_TIME 10000
-
-
-/** The minimum time that must pass between two on-verify calls on the same peer */
-#define MIN_VERIFY_INTERVAL 10000 /* 10 seconds */
-
-/** How long a peer stays valid after a successful on-verify run */
-#define VERIFY_VALID_TIME 60000 /* 1 minute */
-
-/** Maximum number of concurrent on-verify runs */
-#define VERIFY_LIMIT 32
-
-/** The minimum interval between two handshakes with a peer */
-#define MIN_HANDSHAKE_INTERVAL 15000 /* 15 seconds */
-
-/** The minimum interval between two resolves of the same remote */
-#define MIN_RESOLVE_INTERVAL 15000 /* 15 seconds */
-
-/** The number of hash tables for backoff_unknown() */
-#define UNKNOWN_TABLES 16
-
-/** The number of entries per unknown peer table */
-#define UNKNOWN_ENTRIES 64
-
-
-
-/** How long a session stays valid after a key is negotiated */
-#define KEY_VALID 3600000 /* 60 minutes */
-
-/** How long an old session stays valid after a new session has been established */
-#define KEY_VALID_OLD 60000 /* 1 minute */
-
-/** How many seconds after the establishment of a session we want to refresh the session */
-#define KEY_REFRESH 3300000 /* 55 minutes */
-
-/** A random time up to KEY_REFRESH_SPLAY is subtracted from KEY_REFRESH */
-#define KEY_REFRESH_SPLAY 300000 /* 5 minutes */