From d583c111c78cfe84d51e1886a6d00aef985db97e Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Tue, 2 Apr 2013 15:59:26 +0200 Subject: [PATCH] Update doc WRT @4, @6, @ notations --- doc/comstack.xml | 11 +++++++---- doc/server.xml | 12 +++++++----- 2 files changed, 14 insertions(+), 9 deletions(-) diff --git a/doc/comstack.xml b/doc/comstack.xml index fe2d937..632cb9c 100644 --- a/doc/comstack.xml +++ b/doc/comstack.xml @@ -445,10 +445,13 @@ - For TCP/IP and SSL transport modes, the special hostname "@" - is mapped to any local address - (the manifest constant INADDR_ANY). - It is used to establish local listening endpoints in the server role. + For TCP/IP and SSL, the special hostnames @, + maps to IN6ADDR_ANY_INIT with + IPV4 binding as well (bindv6only=0), + The special hostname @4 binds to + INADDR_ANY (IPV4 only listener). + The special hostname @6 binds to + IN6ADDR_ANY_INIT with bindv6only=1 (IPV6 only listener). diff --git a/doc/server.xml b/doc/server.xml index b4b0fbe..f5b28f4 100644 --- a/doc/server.xml +++ b/doc/server.xml @@ -818,11 +818,13 @@ typedef struct bend_scan_rr { - For TCP/IP and SSL, the special hostnames @ and - @6 are mapped to the addresses - INADDR_ANY (IPV4) and - IN6ADDR_ANY_INIT (IPV6) - respectively. + For TCP/IP and SSL, the special hostnames @, + maps to IN6ADDR_ANY_INIT with + IPV4 binding as well (bindv6only=0), + The special hostname @4 binds to + INADDR_ANY (IPV4 only listener). + The special hostname @6 binds to + IN6ADDR_ANY_INIT with bindv6only=1 (IPV6 only listener). Running the GFS on Unix -- 1.7.10.4