diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-12-09 23:11:41 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-12-09 23:11:41 +0000 |
commit | 24c5021d55872347d7af8882235d2cb41423ba2b (patch) | |
tree | 0790c18c64322e25693c7864bc61f7f495d30d09 | |
parent | 57aa37a7b0b07e55ee8d7e30342cde10cbeeebe1 (diff) |
add a comment to the example config reminding users that gnutls and openssl are interchangable and compatible, and you dont have to use the same one at both ends of the link for it to work.
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@5903 e03df62e-2008-0410-955e-edbf42e46eb7
-rw-r--r-- | docs/inspircd.conf.example | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/docs/inspircd.conf.example b/docs/inspircd.conf.example index 85ca14dde..edd3e0c85 100644 --- a/docs/inspircd.conf.example +++ b/docs/inspircd.conf.example @@ -131,8 +131,8 @@ # # # Syntax is as follows: # # # -# <bind address="ip or host" port="port" type="clients"> # -# <bind address="ip or host" port="port" type="servers"> # +# <bind address="ip address" port="port" type="clients"> # +# <bind address="ip address" port="port" type="servers"> # # # # If InspIRCd is built for IPV6, and you wish to accept IPV4 clients, # # then you must specify your IPV6 clients in the following form: # @@ -143,6 +143,11 @@ <bind address="" port="6000" type="clients"> <bind address="" port="6660-6669" type="clients" ssl="gnutls"> + +# When linking servers, the openssl and gnutls transports are largely +# link-compatible and can be used alongside each other or either/or +# on each end of the link without any significant issues. + <bind address="" port="7000,7001" type="servers"> <bind address="1.2.3.4" port="7005" type="servers" transport="openssl"> |