Home
last modified time | relevance | path

Searched full:ipv6 (Results 1 – 22 of 22) sorted by relevance

/civetweb-2.7.6/docs/api/
Dmg_connect_client_secure.md23IPv6 communication is supported by Civetweb, but only if the use of IPv6 was enabled at compile ti…
Dmg_connect_client.md23IPv6, but IPv6 is not enabled in every Civetweb installation. Specifically the use of IPv6 communi…
Dmg_client_options.md16IPv6 addresses are only permitted if IPv6 support was enabled during compilation. You can use the …
Dmg_connect_websocket_client.md30 …4 and IPv6 communication, but only if the use if IPv6 has been enabled at compile time. When runni…
Dmg_download.md32IPv6 communication that IPv6 addressing is only available if it was enabled at compile time. When …
Dmg_check_feature.md28 | **8** | USE_IPV6 | *Support IPv6*. The CivetWeb library is capable of communicating over both IPv…
Dmg_init_library.md33 | **8** | USE_IPV6 | *Support IPv6*. The CivetWeb library is capable of communicating over both IPv…
Dmg_server_port.md9 …ocol`**|`int`|The protocol mask where `IPv4` is **1**, `IPv6` is **2** and both `IPv4` and `IPv6` …
Dmg_request_info.md16 …of the remote client as a string. This can either represent an IPv4 or an IPv6 address. Example: …
/civetweb-2.7.6/docs/
DUserManual.md441 If the server is built with IPv6 support, `[::]:8080` can be used to
442 listen to IPv6 connections to port 8080. IPv6 addresses of network
444 e.g. `[::1]:8080` for the IPv6 loopback interface.
446 [::]:80 will bind to port 80 IPv6 only. In order to use port 80 for
447 all interfaces, both IPv4 and IPv6, use either the configuration
448 `80,[::]:80` (create one socket for IPv4 and one for IPv6 only),
449 or `+80` (create one socket for both, IPv4 and IPv6).
450 The `+` notation to use IPv4 and IPv6 will only work if no network
452 and IPv6 network environment, some configurations might not work
464 for most Linux distributions: /etc/hosts). E.g., to bind the IPv6
DInterface_Changes_1.10.md83 #### S5: IPv6 support for access\_control\_list and throttle
87 [IPv6](https://en.wikipedia.org/wiki/IPv6_address) as well,
DBuilding.md90 | `WITH_IPV6=1` | with IPV6 support |
157 | `USE_IPV6` | enable IPv6 support |
DInstalling.md23 This pre-built version comes with Lua, IPV6 and SSL support.
/civetweb-2.7.6/
D.travis.yml43 # Add an IPv6 config - see the corresponding Travis issue
46 echo "Activating IPv6 on Travis";
47 sudo sh -c 'echo 0 > /proc/sys/net/ipv6/conf/all/disable_ipv6';
49 # Check some settings of the build server (operating system, IPv6 availability, directory)
94 # Modifications due to Travis IPv6 issues:
DRELEASE_NOTES.md41 - Fix for requests using IPv6 addresses as hostname
51 - Fixes for IPv6 support
161 - Short notation for listening_ports option when using IPv4 and IPv6 ports
330 - Fixed IPV6 defines under Windowe (grenclave)
DMakefile241 @echo " WITH_IPV6=1 with IPV6 support"
/civetweb-2.7.6/unittest/
Dprivate.c598 /* IPv6 config */ in START_TEST()
603 /* IPv4 + IPv6 config */ in START_TEST()
606 /* IPv6 config: invalid if IPv6 is not activated */ in START_TEST()
611 /* IPv4 + IPv6 config: only IPv4 if IPv6 is not activated */ in START_TEST()
1174 /* test_parse_port_string requires WSAStartup for IPv6 */ in MAIN_PRIVATE()
DCMakeLists.txt188 civetweb_add_test(PublicServer "Start Stop HTTP Server IPv6")
Dpublic_server.c328 test_mg_start_stop_http_server_impl(int ipv6, int bound) in test_mg_start_stop_http_server_impl() argument
333 const char *localhost_name = ((ipv6) ? "[::1]" : "127.0.0.1"); in test_mg_start_stop_http_server_impl()
357 OPTIONS[optcnt++] = ((ipv6) ? "[::1]:+8080" : "127.0.0.1:8080"); in test_mg_start_stop_http_server_impl()
359 OPTIONS[optcnt++] = ((ipv6) ? "+8080" : "8080"); in test_mg_start_stop_http_server_impl()
408 if (ipv6) { in test_mg_start_stop_http_server_impl()
4947 tcase_create("Start Stop HTTP Server IPv6"); in make_public_server_suite()
/civetweb-2.7.6/include/
Dcivetweb.h73 /* Support IPv6. */
708 int protocol; /* 1 = IPv4, 2 = IPv6, 3 = both */
1461 8 support IPv6 (USE_IPV6 set)
/civetweb-2.7.6/src/
Dcivetweb.c1752 #define IP_ADDR_STR_LEN (50) /* IPv6 hex string is 46 chars */
2262 /* Unified socket address. For IPv6 support, add IPv6 address structure in
3614 /* IPv6 */ in mg_get_server_ports()
8957 /* connected with IPv6 */
13136 /* If the "Host" is an IPv6 address, like [::1], parse until ]
14342 * Examples for IPv6: [::]:80, [::1]:80,
14345 * In order to bind to both, IPv4 and IPv6, you can either add
14348 * one only accepting IPv4 the other only IPv6. +8080 creates
14349 * one socket accepting IPv4 and IPv6. Depending on the IPv6
14367 * for both IPv4 and IPv6 (INADDR_ANY and IN6ADDR_ANY_INIT). */
[all …]
/civetweb-2.7.6/examples/embedded_c/
Dembedded_c.c999 "Error: Embedded example built with IPv6 support, " in main()
1132 /* IPv6 */ in main()