diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2008-03-15 18:09:56 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2008-03-15 18:09:56 +0000 |
commit | 4a1477273265172e7f47d69d072ba45dd84668c1 (patch) | |
tree | ab44a5a8ad387212f5af5c7254382c3d26116c67 | |
parent | ffdaddfa9576761dab4345f82f39db4d51a6583a (diff) |
Support IPV6 links in configure
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@9100 e03df62e-2008-0410-955e-edbf42e46eb7
-rw-r--r-- | win/configure.cpp | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/win/configure.cpp b/win/configure.cpp index 055e2ed25..647295965 100644 --- a/win/configure.cpp +++ b/win/configure.cpp @@ -186,8 +186,9 @@ void Run() { int max_fd = 10200; bool use_iocp = false; - bool support_ip6links = false; + bool support_ip6links = true; bool use_openssl = false; + bool ipv6 = true; char mod_path[MAX_PATH]; char config_file[MAX_PATH]; char library_dir[MAX_PATH]; @@ -248,8 +249,12 @@ void Run() use_iocp = get_bool_option("Do you want to use the IOCP implementation?", false); } - support_ip6links = get_bool_option("\nYou have chosen to build an \033[1;32mIPV4-only\033[0m server.\nWould you like to enable support for linking to IPV6-enabled InspIRCd servers?\nIf you are using a recent operating system and are unsure, answer yes.\nIf you answer 'no' here, your InspIRCd server will be unable\nto parse IPV6 addresses (e.g. for CIDR bans)", - true); + ipv6 = get_bool_option("Do you want to enable IPv6?", false); + + if (!ipv6) + support_ip6links = get_bool_option("\nYou have chosen to build an \033[1;32mIPV4-only\033[0m server.\nWould you like to enable support for linking to IPV6-enabled InspIRCd servers?\nIf you are using a recent operating system and are unsure, answer yes.\nIf you answer 'no' here, your InspIRCd server will be unable\nto parse IPV6 addresses (e.g. for CIDR bans)", true); + else + support_ip6links = true; printf_c("\033[1mAll paths are relative to the binary directory.\033[0m\n"); get_string_option("In what directory do you wish to install the InspIRCd base?", "..", base_path); @@ -362,6 +367,8 @@ void Run() fprintf(f, "#define __CONFIGURATION_AUTO__\n\n"); if(use_iocp) fprintf(f, "#define CONFIG_USE_IOCP 1\n\n"); + if (ipv6) + fprintf(f, "#define IPV6 1\n\n"); fprintf(f, "#define CONFIG_FILE \"%s/inspircd.conf\"\n", config_file); fprintf(f, "#define MOD_PATH \"%s\"\n", mod_path); |