From 1517a6bc2abc81538356858b3cc8d997637d9590 Mon Sep 17 00:00:00 2001 From: Michael Poole Date: Sat, 8 Jan 2005 13:48:33 +0000 Subject: [PATCH] Improve Doxygen documentation on zombies. Re-insert documentation of LOG feature. git-svn-id: file:///home/klmitch/undernet-ircu/undernet-ircu-svn/ircu2/trunk@1295 c9e4aea6-c8fd-4c43-8297-357d70d61c8c --- ChangeLog | 8 ++++++++ doc/example.conf | 5 +++++ ircd/channel.c | 10 +++++++++- 3 files changed, 22 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 07410e6..960f9fd 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2005-01-08 Michael Poole + + * ircd/channel.c (@page zombie): Add synopsis to explain what + zombies are supposed to do. + + * doc/example.conf (Features): Transfer recommended LOG features + from 2.10.11 example.conf. + 2005-01-03 Michael Poole * ircd/ircd.c (try_connections): Test Connect hold time before diff --git a/doc/example.conf b/doc/example.conf index bbd61b9..ed11308 100644 --- a/doc/example.conf +++ b/doc/example.conf @@ -745,6 +745,11 @@ IAuth { # features { +# These log features are the only way to get certain error messages +# (such as when the server dies from being out of memory). For more +# explanation of how they work, see doc/readme.log. + "LOG" = "SYSTEM" "FILE" "ircd.log"; + "LOG" = "SYSTEM" "LEVEL" "CRIT"; # "DOMAINNAME"=""; # "RELIABLE_CLOCK"="FALSE"; # "BUFFERPOOL"="27000000"; diff --git a/ircd/channel.c b/ircd/channel.c index e2a991f..a9968dc 100644 --- a/ircd/channel.c +++ b/ircd/channel.c @@ -1399,7 +1399,15 @@ void del_invite(struct Client *cptr, struct Channel *chptr) } } -/** @page zombie Explaination of Zombies +/** @page zombie Explanation of Zombies + * + * Synopsis: + * + * A channel member is turned into a zombie when he is kicked from a + * channel but his server has not acknowledged the kick. Servers that + * see the member as a zombie can accept actions he performed before + * being kicked, without allowing chanop operations from outsiders or + * desyncing the network. * * Consider: *
-- 
2.20.1