diff options
| author | Alexander Barton <alex@barton.de> | 2012-10-06 18:25:43 +0200 |
|---|---|---|
| committer | Alexander Barton <alex@barton.de> | 2012-10-06 18:26:25 +0200 |
| commit | 46b0eef721b9b3eec37d29aff65b6a7fc488a887 (patch) | |
| tree | d863ced9e38b1e6e38c8fef3afa984d69984ab45 /src/ngircd/irc-encoding.h | |
| parent | 4790d78c980c79abfd71c064be1eb085717210f8 (diff) | |
| parent | 343a90dc376eb9979151752ec33c64ca45b04802 (diff) | |
| download | ngircd-46b0eef721b9b3eec37d29aff65b6a7fc488a887.tar.gz ngircd-46b0eef721b9b3eec37d29aff65b6a7fc488a887.zip | |
Merge branch 'bug109-CHARCONV'
This closes bug #109. * bug109-CHARCONV: Debian: require "telnet" or "telnet-ssl" for building Debian ngircd-full[-dbg]: enable CHARCONV Add "CHARCONV" to "feature string" when enabled Implement new IRC+ "CHARCONV" command Added new configure option "--with-iconv" Conflicts: src/ngircd/messages.h
Diffstat (limited to 'src/ngircd/irc-encoding.h')
| -rw-r--r-- | src/ngircd/irc-encoding.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/ngircd/irc-encoding.h b/src/ngircd/irc-encoding.h new file mode 100644 index 00000000..4349c910 --- /dev/null +++ b/src/ngircd/irc-encoding.h @@ -0,0 +1,24 @@ +/* + * ngIRCd -- The Next Generation IRC Daemon + * Copyright (c)2001-2012 Alexander Barton (alex@barton.de) and Contributors. + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * Please read the file COPYING, README and AUTHORS for more information. + */ + +#ifndef __irc_encoding_h__ +#define __irc_encoding_h__ + +/** + * @file + * IRC encoding commands (header) + */ + +GLOBAL bool IRC_CHARCONV PARAMS((CLIENT *Client, REQUEST *Req)); + +#endif + +/* -eof- */ |