diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-04-01 15:22:54 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-04-01 15:22:54 +0000 |
commit | e466a6f5fef9aa5cb0ac4621fd578edbace88281 (patch) | |
tree | 5f3bfc33613625ac7775a46bd52c234dda8369af /include/configreader.h | |
parent | c72736a6eb41a434680da033653414175fc1ca9a (diff) |
Add <options:fixedquit> and <options:suffixquit> to go along with the existing <options:prefixquit>. note that fixedquit overrides both suffix and prefix if set
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@6722 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include/configreader.h')
-rw-r--r-- | include/configreader.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/configreader.h b/include/configreader.h index 9e0016bee..2d144441a 100644 --- a/include/configreader.h +++ b/include/configreader.h @@ -276,6 +276,14 @@ class ServerConfig : public Extensible */ char PrefixQuit[MAXBUF]; + /** The quit suffix in use, or an empty string + */ + char SuffixQuit[MAXBUF]; + + /** The fixed quit message in use, or an empty string + */ + char FixedQuit[MAXBUF]; + /** The last string found within a <die> tag, or * an empty string. */ |