[IRC-Dev CVS] [CVS] Module ircd-ircdev: Change committed
Brought to you by:
zolty
From: Toni G. <zo...@us...> - 2004-05-28 10:16:16
|
CVSROOT : /cvsroot/irc-dev Module : ircd-ircdev Commit time: 2004-05-28 10:16:06 UTC Modified files: doc/ircd.sample-en.conf doc/ircd.sample-es.conf Log message: fixes de errores sintaticos en los ircd.conf ---------------------- diff included ---------------------- Index: ircd-ircdev/doc/ircd.sample-en.conf diff -u ircd-ircdev/doc/ircd.sample-en.conf:1.6 ircd-ircdev/doc/ircd.sample-en.conf:1.7 --- ircd-ircdev/doc/ircd.sample-en.conf:1.6 Fri May 28 03:01:20 2004 +++ ircd-ircdev/doc/ircd.sample-en.conf Fri May 28 03:15:55 2004 @@ -231,19 +231,17 @@ # Technical description (for examples, see below): # For every connecting client, the IP address is known. A reverse lookup # on this IP-number is done to get the (/all) hostname(s). -# Each hostname that belongs to this IP-number is matched to <hostmask>, -# and the "Client" block is used when any matches; the client will then -show -FIX FIX +# Each hostname that belongs to this IP-number is matched to "host" field, +# and the "Client" block is used when any matches; the client will then show # with this particular hostname. If none of the hostnames match, then -# the IP-number is matched against the <IP mask ...> field, if this matches -# then the Client{} is used nevertheless and the client will show with the +# the IP-number is matched against the "ip" field, if this matches then the +# "Client" block is used nevertheless and the client will show with the # first (main) hostname if any; if the IP-number did not resolve then the # client will show with the dot notation of the IP-number. # There is a special case for the UNIX domain sockets and localhost connections -# though; in this case the <IP mask ...> field is compared with the -# name of the server (thus not with any IP-number representation). The name -# of the server is the one returned in the numeric 002 reply, for example: +# though; in this case the "ip" field is compared with the name of the server +# (thus not with any IP-number representation). The name of the server is the +# one returned in the numeric 002 reply, for example: # 002 Your host is 2.irc-dev.net[jolan.ppro], running version ... # Then the "jolan.ppro" is the name used for matching. # Therefore, unix domain sockets, and connections to localhost would Index: ircd-ircdev/doc/ircd.sample-es.conf diff -u ircd-ircdev/doc/ircd.sample-es.conf:1.1 ircd-ircdev/doc/ircd.sample-es.conf:1.2 --- ircd-ircdev/doc/ircd.sample-es.conf:1.1 Fri May 28 03:03:11 2004 +++ ircd-ircdev/doc/ircd.sample-es.conf Fri May 28 03:15:56 2004 @@ -214,7 +214,7 @@ # badchan (puede poner Gchans a otros servidores) # force_opmode (puede utilizar OPMODE/CLEARMODE en canales quarantined globales) # - # PAra los opers globales (con "propagate = yes" o "local = no"), por + # Para los opers globales (con "propagate = yes" o "local = no"), por # defecto es conceder todos los privilegios antes mencionados. Para los # opers locales, por defecto es conceder SOLO los siguientes privilegios: # chan_limit, mode_lchan, show_invis, show_all_invis, local_kill, @@ -245,16 +245,16 @@ # Para cada cliente que conecta, su dirección IP es conocida. Se hace una # consulta de dns inverso a la IP númerica para obtener el/los(todos) # hostnames. -# Cada hostname que pertenece a esa IP numérica se compara con <hostmask>, -# y el bloque "Client" se usa cuando cualquiera de ellos encaja; el cliente -# entonces se mostrará con ese hostname en concreto. Si ninguno de los -# hostnames encanjan, entonces la IP numérica se compara contra el campo -# <IP mask>, y si esta concuerda entonces el bloque "Client" se usa a pesar +# Cada hostname que pertenece a esa IP numérica se compara con el campo +# "host", y el bloque "Client" se usa cuando cualquiera de ellos encaja; +# el cliente entonces se mostrará con ese hostname en concreto. Si ninguno +# de los hostnames encajan, entonces la IP numérica se compara contra el +# campo "ip", y si esta concuerda entonces el bloque "Client" se usa a pesar # de todo y el cliente mostrará el primer (principal) hostname si existe; # si la IP numérica no resuelve, el cliente mostrará la notación decimal de # la IP númerica. # Hay un caso especial para los sockets de los dominios UNIX y las -# conexiones del host local (localhost); en este caso el campo <IP mask> +# conexiones del host local (localhost); en este caso el campo "ip" # se compara con el nombre del servidor (de tal suerte que no se hace # con ninguna representación de una IP numérica). El nombre del servidor # es el devuelto en la respuesta del numérico 002, por ejemplo: ----------------------- End of diff ----------------------- |