diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-03-10 11:53:01 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-03-10 11:53:01 +0000 |
commit | 5100f9183cd2ffddfeda0153f8ce427830fda42f (patch) | |
tree | afc27b75b632ba8cacca775188c16da781cba51e /docs/inspircd.conf.example | |
parent | da2ad810d29d16446adf5b88f8371704c1c88786 (diff) |
Update docs to indicate hostname can be used in <bind> tag
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@3622 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'docs/inspircd.conf.example')
-rw-r--r-- | docs/inspircd.conf.example | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/docs/inspircd.conf.example b/docs/inspircd.conf.example index cd2018a37..f3aa3b2ab 100644 --- a/docs/inspircd.conf.example +++ b/docs/inspircd.conf.example @@ -79,8 +79,13 @@ # # # Enter the port and address bindings here. # # # -# bind address - specifies which the address which ports bind # -# port - opens an unused port # +# bind address - specifies which the address which ports bind. # +# may be a hostname or an IP address. Resolution of # +# hostnames may block for up to one second per IP # +# as port binding occurs before the socket engine is # +# initialized and therefore nonblocking DNS is not # +# available at this point until startup is complete. # +# port - The port number to bind to # # type - can be 'clients' or 'servers'. The clients type is # # a standard tcp based socket, the servers type is a # # also a TCP based connection but of a different # @@ -100,8 +105,8 @@ # # # Syntax is as follows: # # # -# <bind address="ip number" port="port" type="clients"> # -# <bind address="ip number" port="port" type="servers"> # +# <bind address="ip or host" port="port" type="clients"> # +# <bind address="ip or host" port="port" type="servers"> # # # <bind address="" port="6660" type="clients"> |