1
0
mirror of https://github.com/osmarks/ngircd.git synced 2024-12-04 22:19:57 +00:00

Fix and extend documentation a little bit

- Fix syntax of LINKS amd LIST commands.
- Whitespace and spelling fixes.
- Add some more information about IRCv3 support.
This commit is contained in:
Alexander Barton 2019-06-29 16:02:18 +02:00
parent bb1d014aba
commit 13122bc97d
2 changed files with 13 additions and 6 deletions

View File

@ -2,7 +2,7 @@
ngIRCd - Next Generation IRC Server ngIRCd - Next Generation IRC Server
http://ngircd.barton.de/ http://ngircd.barton.de/
(c)2001-2013 Alexander Barton and Contributors. (c)2001-2019 Alexander Barton and Contributors.
ngIRCd is free software and published under the ngIRCd is free software and published under the
terms of the GNU General Public License. terms of the GNU General Public License.
@ -386,7 +386,7 @@ Status and Informational Commands
- RFC 2812, 4.9 "Ison message" - RFC 2812, 4.9 "Ison message"
- LINKS - LINKS
LINKS [[<target>] [<mask>] LINKS [[<target>] <mask>]
. .
List all servers currently registered in the network matching <mask>, List all servers currently registered in the network matching <mask>,
or all servers if <mask> has been omitted, as seen by the server or all servers if <mask> has been omitted, as seen by the server
@ -617,9 +617,10 @@ Channel Commands
- RFC 2812, 3.2.8 "Kick command" - RFC 2812, 3.2.8 "Kick command"
- LIST - LIST
LIST [<channel>[,<channel>[,...]] [<server>]] LIST [<mask>[,<mask>[,...]] [<server>]]
. .
List all visible <channels> (comma-separated list). List all visible channels matching the <mask> (comma-separated list),
or all channels when no <mask> was specified.
. .
If <server> is given, the command will be forwarded to <server> for If <server> is given, the command will be forwarded to <server> for
evaluation. evaluation.
@ -882,7 +883,7 @@ Server Protocol Commands
- ERROR - ERROR
ERROR [<message> [<> [...]]] ERROR [<message> [<> [...]]]
. .
Inform a client or a server about an error condition. The first Inform a client or a server about an error condition. The first
parameter, if given, is logged by the server receiving the message, parameter, if given, is logged by the server receiving the message,
all other parameters are silently ignored. all other parameters are silently ignored.
. .

View File

@ -2,7 +2,7 @@
ngIRCd - Next Generation IRC Server ngIRCd - Next Generation IRC Server
http://ngircd.barton.de/ http://ngircd.barton.de/
(c)2001-2012 Alexander Barton and Contributors. (c)2001-2019 Alexander Barton and Contributors.
ngIRCd is free software and published under the ngIRCd is free software and published under the
terms of the GNU General Public License. terms of the GNU General Public License.
@ -26,6 +26,12 @@ clients are compatible with a server configured that way, some can't even
connect at all! Therefore this option usually isn't desired for "normal connect at all! Therefore this option usually isn't desired for "normal
server operation". server operation".
In addition, ngIRCd implements some "IRCv3" features. This includes:
- IRCv3 Client Capability Negotiation
- IRCv3.1 multi-prefix Extension
- IRCv3.2 userhost-in-names Extension
Please see the IRCv3 homepage for more information: <https://ircv3.net>.
II. The IRC+ Protocol II. The IRC+ Protocol
~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~