diff options
author | Wilmer van der Gaast <wilmer@gaast.net> | 2010-06-16 10:31:40 +0200 |
---|---|---|
committer | Wilmer van der Gaast <wilmer@gaast.net> | 2010-06-16 10:31:40 +0200 |
commit | 6b90431eba3820aaa5535523622ba45ca65055f4 (patch) | |
tree | 434c10fe6c17b47ad16acc8ce1d97c25d66cb5cb /irc.h | |
parent | e5b521d07dbe197c2dd7552f0036bdcac2116cde (diff) |
More correct handling of channel names (according to RFC 1459). Pretty
much any 8-bit character is allowed in there - while nicknames are very
restricted.
Diffstat (limited to 'irc.h')
-rw-r--r-- | irc.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -230,6 +230,7 @@ int irc_channel_set_topic( irc_channel_t *ic, const char *topic, const irc_user_ void irc_channel_user_set_mode( irc_channel_t *ic, irc_user_t *iu, irc_channel_user_flags_t flags ); void irc_channel_printf( irc_channel_t *ic, char *format, ... ); gboolean irc_channel_name_ok( const char *name ); +int irc_channel_name_cmp( const char *a_, const char *b_ ); void irc_channel_update_ops( irc_channel_t *ic, char *value ); char *set_eval_irc_channel_ops( struct set *set, char *value ); |