diff options
author | Sander Vrijders <sander.vrijders@intec.ugent.be> | 2016-05-10 16:33:53 +0200 |
---|---|---|
committer | Sander Vrijders <sander.vrijders@intec.ugent.be> | 2016-05-10 16:33:53 +0200 |
commit | dfda83926c50297d7c315f743b4514f687469c9c (patch) | |
tree | 3b1041b979779c3ecf9f114beaaa0f3ffa9e8ea5 /include | |
parent | b4397485d19dc8bd4c109641e0495f8c5a5f4d16 (diff) | |
download | ouroboros-dfda83926c50297d7c315f743b4514f687469c9c.tar.gz ouroboros-dfda83926c50297d7c315f743b4514f687469c9c.zip |
ipcpd: Allow disabling of DNS
This allows someone to disable the use of DNS in the shim UDP. It also
adds a config file specific for the shim UDP (which holds the nsupdate
location). Certain defines were also moved to the global config file.
Diffstat (limited to 'include')
-rw-r--r-- | include/ouroboros/config.h.in | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/ouroboros/config.h.in b/include/ouroboros/config.h.in index 380c1065..2a496343 100644 --- a/include/ouroboros/config.h.in +++ b/include/ouroboros/config.h.in @@ -26,10 +26,11 @@ #define PROJECT_NAME "@CMAKE_PROJECT_NAME@" #define PROJECT_VERSION "@PACKAGE_VERSION@" #define INSTALL_DIR "@CMAKE_INSTALL_PREFIX@" -#define BUILD_TYPE "@CMAKE_BUILD_TYPE@" #define _POSIX_C_SOURCE 199506L #define IPCP_SHIM_UDP_EXEC "@IPCP_SHIM_UDP_TARGET@" #define IPCP_NORMAL_EXEC "@IPCP_NORMAL_TARGET@" -#define NSUPDATE_EXEC "@NSUPDATE_EXECUTABLE@" +#define AP_MAX_FLOWS 256 +#define DU_BUFF_HEADSPACE 128 +#define DU_BUFF_TAILSPACE 0 #endif |