[81e04e1] | 1 | /********************************************************************\ |
---|
| 2 | * BitlBee -- An IRC to other IM-networks gateway * |
---|
| 3 | * * |
---|
| 4 | * Copyright 2002-2010 Wilmer van der Gaast and others * |
---|
| 5 | \********************************************************************/ |
---|
| 6 | |
---|
| 7 | /* Some glue to put the IRC and the IM stuff together. */ |
---|
| 8 | |
---|
| 9 | /* |
---|
| 10 | This program is free software; you can redistribute it and/or modify |
---|
| 11 | it under the terms of the GNU General Public License as published by |
---|
| 12 | the Free Software Foundation; either version 2 of the License, or |
---|
| 13 | (at your option) any later version. |
---|
| 14 | |
---|
| 15 | This program is distributed in the hope that it will be useful, |
---|
| 16 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
| 17 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
| 18 | GNU General Public License for more details. |
---|
| 19 | |
---|
| 20 | You should have received a copy of the GNU General Public License with |
---|
| 21 | the Debian GNU/Linux distribution in /usr/share/common-licenses/GPL; |
---|
| 22 | if not, write to the Free Software Foundation, Inc., 59 Temple Place, |
---|
| 23 | Suite 330, Boston, MA 02111-1307 USA |
---|
| 24 | */ |
---|
| 25 | |
---|
| 26 | #include "bitlbee.h" |
---|
[17a6ee9] | 27 | #include "dcc.h" |
---|
[d860a8d] | 28 | |
---|
[e4816ea] | 29 | /* IM->IRC callbacks: Simple IM/buddy-related stuff. */ |
---|
[d860a8d] | 30 | |
---|
[81e04e1] | 31 | static const struct irc_user_funcs irc_user_im_funcs; |
---|
| 32 | |
---|
| 33 | static gboolean bee_irc_user_new( bee_t *bee, bee_user_t *bu ) |
---|
| 34 | { |
---|
| 35 | irc_user_t *iu; |
---|
| 36 | char nick[MAX_NICK_LENGTH+1], *s; |
---|
| 37 | |
---|
| 38 | memset( nick, 0, MAX_NICK_LENGTH + 1 ); |
---|
| 39 | strcpy( nick, nick_get( bu->ic->acc, bu->handle ) ); |
---|
| 40 | |
---|
[d860a8d] | 41 | bu->ui_data = iu = irc_user_new( (irc_t*) bee->ui_data, nick ); |
---|
| 42 | iu->bu = bu; |
---|
[81e04e1] | 43 | |
---|
| 44 | if( ( s = strchr( bu->handle, '@' ) ) ) |
---|
| 45 | { |
---|
| 46 | iu->host = g_strdup( s + 1 ); |
---|
| 47 | iu->user = g_strndup( bu->handle, s - bu->handle ); |
---|
| 48 | } |
---|
| 49 | else if( bu->ic->acc->server ) |
---|
| 50 | { |
---|
| 51 | iu->host = g_strdup( bu->ic->acc->server ); |
---|
| 52 | iu->user = g_strdup( bu->handle ); |
---|
| 53 | |
---|
| 54 | /* s/ /_/ ... important for AOL screennames */ |
---|
| 55 | for( s = iu->user; *s; s ++ ) |
---|
| 56 | if( *s == ' ' ) |
---|
| 57 | *s = '_'; |
---|
| 58 | } |
---|
| 59 | else |
---|
| 60 | { |
---|
| 61 | iu->host = g_strdup( bu->ic->acc->prpl->name ); |
---|
| 62 | iu->user = g_strdup( bu->handle ); |
---|
| 63 | } |
---|
| 64 | |
---|
[f012a9f] | 65 | if( set_getbool( &bee->set, "private" ) ) |
---|
| 66 | iu->flags |= IRC_USER_PRIVATE; |
---|
| 67 | |
---|
[81e04e1] | 68 | iu->f = &irc_user_im_funcs; |
---|
| 69 | //iu->last_typing_notice = 0; |
---|
| 70 | |
---|
| 71 | return TRUE; |
---|
| 72 | } |
---|
| 73 | |
---|
[d860a8d] | 74 | static gboolean bee_irc_user_free( bee_t *bee, bee_user_t *bu ) |
---|
| 75 | { |
---|
[eabc9d2] | 76 | return irc_user_free( bee->ui_data, (irc_user_t *) bu->ui_data ); |
---|
[d860a8d] | 77 | } |
---|
[81e04e1] | 78 | |
---|
[d860a8d] | 79 | static gboolean bee_irc_user_status( bee_t *bee, bee_user_t *bu, bee_user_t *old ) |
---|
| 80 | { |
---|
[231b08b] | 81 | irc_t *irc = bee->ui_data; |
---|
[003a12b] | 82 | irc_user_t *iu = bu->ui_data; |
---|
[231b08b] | 83 | irc_channel_t *ic = irc->channels->data; /* For now, just pick the first channel. */ |
---|
| 84 | |
---|
[eb50495] | 85 | /* Do this outside the if below since away state can change without |
---|
| 86 | the online state changing. */ |
---|
| 87 | iu->flags &= ~IRC_USER_AWAY; |
---|
| 88 | if( bu->flags & BEE_USER_AWAY || !( bu->flags & BEE_USER_ONLINE ) ) |
---|
| 89 | iu->flags |= IRC_USER_AWAY; |
---|
| 90 | |
---|
[231b08b] | 91 | if( ( bu->flags & BEE_USER_ONLINE ) != ( old->flags & BEE_USER_ONLINE ) ) |
---|
| 92 | { |
---|
| 93 | if( bu->flags & BEE_USER_ONLINE ) |
---|
[003a12b] | 94 | { |
---|
| 95 | if( g_hash_table_lookup( irc->watches, iu->key ) ) |
---|
| 96 | irc_send_num( irc, 600, "%s %s %s %d :%s", iu->nick, iu->user, |
---|
| 97 | iu->host, (int) time( NULL ), "logged online" ); |
---|
| 98 | |
---|
| 99 | irc_channel_add_user( ic, iu ); |
---|
[6a9d068] | 100 | |
---|
| 101 | if( set_getbool( &bee->set, "away_devoice" ) ) |
---|
| 102 | irc_channel_user_set_mode( ic, iu, ( bu->flags & BEE_USER_AWAY ) ? |
---|
| 103 | 0 : IRC_CHANNEL_USER_VOICE ); |
---|
[003a12b] | 104 | } |
---|
[231b08b] | 105 | else |
---|
[003a12b] | 106 | { |
---|
| 107 | if( g_hash_table_lookup( irc->watches, iu->key ) ) |
---|
| 108 | irc_send_num( irc, 601, "%s %s %s %d :%s", iu->nick, iu->user, |
---|
| 109 | iu->host, (int) time( NULL ), "logged offline" ); |
---|
| 110 | |
---|
| 111 | irc_channel_del_user( ic, iu ); |
---|
| 112 | } |
---|
[231b08b] | 113 | } |
---|
| 114 | |
---|
[d860a8d] | 115 | return TRUE; |
---|
| 116 | } |
---|
[81e04e1] | 117 | |
---|
[f012a9f] | 118 | static gboolean bee_irc_user_msg( bee_t *bee, bee_user_t *bu, const char *msg, time_t sent_at ) |
---|
| 119 | { |
---|
| 120 | irc_t *irc = bee->ui_data; |
---|
| 121 | irc_channel_t *ic = irc->channels->data; |
---|
| 122 | irc_user_t *iu = (irc_user_t *) bu->ui_data; |
---|
| 123 | char *dst, *prefix = NULL; |
---|
[21c87a7] | 124 | char *wrapped, *ts = NULL; |
---|
| 125 | |
---|
| 126 | if( sent_at > 0 && set_getbool( &irc->b->set, "display_timestamps" ) ) |
---|
| 127 | ts = irc_format_timestamp( irc, sent_at ); |
---|
[f012a9f] | 128 | |
---|
| 129 | if( iu->flags & IRC_USER_PRIVATE ) |
---|
| 130 | { |
---|
| 131 | dst = irc->user->nick; |
---|
[21c87a7] | 132 | prefix = ts; |
---|
| 133 | ts = NULL; |
---|
[f012a9f] | 134 | } |
---|
| 135 | else |
---|
| 136 | { |
---|
| 137 | dst = ic->name; |
---|
[bce78c8] | 138 | prefix = g_strdup_printf( "%s%s%s", irc->user->nick, set_getstr( &bee->set, "to_char" ), ts ? : "" ); |
---|
[f012a9f] | 139 | } |
---|
| 140 | |
---|
| 141 | wrapped = word_wrap( msg, 425 ); |
---|
| 142 | irc_send_msg( iu, "PRIVMSG", dst, wrapped, prefix ); |
---|
| 143 | |
---|
| 144 | g_free( wrapped ); |
---|
| 145 | g_free( prefix ); |
---|
[21c87a7] | 146 | g_free( ts ); |
---|
[f012a9f] | 147 | |
---|
| 148 | return TRUE; |
---|
| 149 | } |
---|
| 150 | |
---|
[573dab0] | 151 | static gboolean bee_irc_user_typing( bee_t *bee, bee_user_t *bu, uint32_t flags ) |
---|
| 152 | { |
---|
| 153 | irc_t *irc = (irc_t *) bee->ui_data; |
---|
| 154 | |
---|
| 155 | if( set_getbool( &bee->set, "typing_notice" ) ) |
---|
| 156 | irc_send_msg_f( (irc_user_t *) bu->ui_data, "PRIVMSG", irc->user->nick, |
---|
| 157 | "\001TYPING %d\001", ( flags >> 8 ) & 3 ); |
---|
| 158 | else |
---|
| 159 | return FALSE; |
---|
| 160 | |
---|
| 161 | return TRUE; |
---|
| 162 | } |
---|
| 163 | |
---|
[1d39159] | 164 | static gboolean bee_irc_user_fullname( bee_t *bee, bee_user_t *bu ) |
---|
| 165 | { |
---|
| 166 | irc_user_t *iu = (irc_user_t *) bu->ui_data; |
---|
| 167 | irc_t *irc = (irc_t *) bee->ui_data; |
---|
| 168 | char *s; |
---|
| 169 | |
---|
| 170 | if( iu->fullname != iu->nick ) |
---|
| 171 | g_free( iu->fullname ); |
---|
| 172 | iu->fullname = g_strdup( bu->fullname ); |
---|
| 173 | |
---|
| 174 | /* Strip newlines (unlikely, but IRC-unfriendly so they must go) |
---|
| 175 | TODO(wilmer): Do the same with away msgs again! */ |
---|
| 176 | for( s = iu->fullname; *s; s ++ ) |
---|
| 177 | if( isspace( *s ) ) *s = ' '; |
---|
| 178 | |
---|
| 179 | if( ( bu->ic->flags & OPT_LOGGED_IN ) && set_getbool( &bee->set, "display_namechanges" ) ) |
---|
| 180 | { |
---|
| 181 | char *msg = g_strdup_printf( "<< \002BitlBee\002 - Changed name to `%s' >>", iu->fullname ); |
---|
| 182 | irc_send_msg( iu, "NOTICE", irc->user->nick, msg, NULL ); |
---|
| 183 | } |
---|
| 184 | |
---|
| 185 | s = set_getstr( &bu->ic->acc->set, "nick_source" ); |
---|
| 186 | if( strcmp( s, "handle" ) != 0 ) |
---|
| 187 | { |
---|
| 188 | char *name = g_strdup( bu->fullname ); |
---|
| 189 | |
---|
| 190 | if( strcmp( s, "first_name" ) == 0 ) |
---|
| 191 | { |
---|
| 192 | int i; |
---|
| 193 | for( i = 0; name[i] && !isspace( name[i] ); i ++ ) {} |
---|
| 194 | name[i] = '\0'; |
---|
| 195 | } |
---|
| 196 | |
---|
| 197 | imcb_buddy_nick_hint( bu->ic, bu->handle, name ); |
---|
| 198 | |
---|
| 199 | g_free( name ); |
---|
| 200 | } |
---|
| 201 | |
---|
| 202 | return TRUE; |
---|
| 203 | } |
---|
| 204 | |
---|
[e4816ea] | 205 | /* IRC->IM calls */ |
---|
| 206 | |
---|
| 207 | static gboolean bee_irc_user_privmsg( irc_user_t *iu, const char *msg ) |
---|
| 208 | { |
---|
| 209 | if( iu->bu ) |
---|
| 210 | return bee_user_msg( iu->irc->b, iu->bu, msg, 0 ); |
---|
| 211 | else |
---|
| 212 | return FALSE; |
---|
| 213 | } |
---|
| 214 | |
---|
| 215 | static gboolean bee_irc_user_ctcp( irc_user_t *iu, char *const *ctcp ) |
---|
| 216 | { |
---|
| 217 | if( ctcp[1] && g_strcasecmp( ctcp[0], "DCC" ) == 0 |
---|
| 218 | && g_strcasecmp( ctcp[1], "SEND" ) == 0 ) |
---|
| 219 | { |
---|
| 220 | if( iu->bu && iu->bu->ic && iu->bu->ic->acc->prpl->transfer_request ) |
---|
| 221 | { |
---|
| 222 | file_transfer_t *ft = dcc_request( iu->bu->ic, ctcp ); |
---|
| 223 | if ( ft ) |
---|
| 224 | iu->bu->ic->acc->prpl->transfer_request( iu->bu->ic, ft, iu->bu->handle ); |
---|
| 225 | |
---|
| 226 | return TRUE; |
---|
| 227 | } |
---|
| 228 | } |
---|
| 229 | else if( g_strcasecmp( ctcp[0], "TYPING" ) == 0 ) |
---|
| 230 | { |
---|
| 231 | if( iu->bu && iu->bu->ic && iu->bu->ic->acc->prpl->send_typing && ctcp[1] ) |
---|
| 232 | { |
---|
| 233 | int st = ctcp[1][0]; |
---|
| 234 | if( st >= '0' && st <= '2' ) |
---|
| 235 | { |
---|
| 236 | st <<= 8; |
---|
| 237 | iu->bu->ic->acc->prpl->send_typing( iu->bu->ic, iu->bu->handle, st ); |
---|
| 238 | } |
---|
| 239 | |
---|
| 240 | return TRUE; |
---|
| 241 | } |
---|
| 242 | } |
---|
| 243 | |
---|
| 244 | return FALSE; |
---|
| 245 | } |
---|
| 246 | |
---|
| 247 | static const struct irc_user_funcs irc_user_im_funcs = { |
---|
| 248 | bee_irc_user_privmsg, |
---|
| 249 | bee_irc_user_ctcp, |
---|
| 250 | }; |
---|
| 251 | |
---|
[aea8b68] | 252 | |
---|
[e4816ea] | 253 | /* IM->IRC: Groupchats */ |
---|
[a87754b] | 254 | static const struct irc_channel_funcs irc_channel_im_chat_funcs; |
---|
| 255 | |
---|
| 256 | static gboolean bee_irc_chat_new( bee_t *bee, struct groupchat *c ) |
---|
[aea8b68] | 257 | { |
---|
| 258 | irc_t *irc = bee->ui_data; |
---|
| 259 | irc_channel_t *ic; |
---|
| 260 | char *topic; |
---|
| 261 | int i; |
---|
| 262 | |
---|
| 263 | for( i = 0; i <= 999; i ++ ) |
---|
| 264 | { |
---|
| 265 | char name[16]; |
---|
| 266 | sprintf( name, "&chat_%03d", i ); |
---|
| 267 | if( ( ic = irc_channel_new( irc, name ) ) ) |
---|
| 268 | break; |
---|
| 269 | } |
---|
| 270 | |
---|
| 271 | if( ic == NULL ) |
---|
| 272 | return FALSE; |
---|
| 273 | |
---|
| 274 | c->ui_data = ic; |
---|
| 275 | ic->data = c; |
---|
[a87754b] | 276 | ic->f = &irc_channel_im_chat_funcs; |
---|
[aea8b68] | 277 | |
---|
| 278 | topic = g_strdup_printf( "BitlBee groupchat: \"%s\". Please keep in mind that root-commands won't work here. Have fun!", c->title ); |
---|
| 279 | irc_channel_set_topic( ic, topic, irc->root ); |
---|
| 280 | g_free( topic ); |
---|
| 281 | |
---|
| 282 | return TRUE; |
---|
| 283 | } |
---|
| 284 | |
---|
[a87754b] | 285 | static gboolean bee_irc_chat_free( bee_t *bee, struct groupchat *c ) |
---|
[aea8b68] | 286 | { |
---|
| 287 | irc_channel_t *ic = c->ui_data; |
---|
| 288 | |
---|
| 289 | if( ic->flags & IRC_CHANNEL_JOINED ) |
---|
| 290 | irc_channel_printf( ic, "Cleaning up channel, bye!" ); |
---|
| 291 | |
---|
| 292 | irc_channel_free( ic ); |
---|
| 293 | |
---|
| 294 | return TRUE; |
---|
| 295 | } |
---|
| 296 | |
---|
[a87754b] | 297 | static gboolean bee_irc_chat_log( bee_t *bee, struct groupchat *c, const char *text ) |
---|
[aea8b68] | 298 | { |
---|
[27e2c66] | 299 | irc_channel_t *ic = c->ui_data; |
---|
| 300 | |
---|
| 301 | irc_channel_printf( ic, "%s", text ); |
---|
[b17ce85] | 302 | |
---|
| 303 | return TRUE; |
---|
[aea8b68] | 304 | } |
---|
| 305 | |
---|
[a87754b] | 306 | static gboolean bee_irc_chat_msg( bee_t *bee, struct groupchat *c, bee_user_t *bu, const char *msg, time_t sent_at ) |
---|
[aea8b68] | 307 | { |
---|
[27e2c66] | 308 | irc_t *irc = bee->ui_data; |
---|
| 309 | irc_user_t *iu = bu->ui_data; |
---|
| 310 | irc_channel_t *ic = c->ui_data; |
---|
| 311 | char *ts = NULL; |
---|
| 312 | |
---|
| 313 | if( sent_at > 0 && set_getbool( &bee->set, "display_timestamps" ) ) |
---|
| 314 | ts = irc_format_timestamp( irc, sent_at ); |
---|
| 315 | |
---|
| 316 | irc_send_msg( iu, "PRIVMSG", ic->name, msg, ts ); |
---|
| 317 | g_free( ts ); |
---|
| 318 | |
---|
| 319 | return TRUE; |
---|
[aea8b68] | 320 | } |
---|
| 321 | |
---|
[a87754b] | 322 | static gboolean bee_irc_chat_add_user( bee_t *bee, struct groupchat *c, bee_user_t *bu ) |
---|
[aea8b68] | 323 | { |
---|
| 324 | irc_t *irc = bee->ui_data; |
---|
| 325 | |
---|
| 326 | irc_channel_add_user( c->ui_data, bu == bee->user ? irc->user : bu->ui_data ); |
---|
[b17ce85] | 327 | |
---|
| 328 | return TRUE; |
---|
[aea8b68] | 329 | } |
---|
| 330 | |
---|
[a87754b] | 331 | static gboolean bee_irc_chat_remove_user( bee_t *bee, struct groupchat *c, bee_user_t *bu ) |
---|
[aea8b68] | 332 | { |
---|
[b17ce85] | 333 | irc_t *irc = bee->ui_data; |
---|
| 334 | |
---|
| 335 | irc_channel_del_user( c->ui_data, bu == bee->user ? irc->user : bu->ui_data ); |
---|
| 336 | |
---|
| 337 | return TRUE; |
---|
[aea8b68] | 338 | } |
---|
| 339 | |
---|
[d343eaa] | 340 | static gboolean bee_irc_chat_name_hint( bee_t *bee, struct groupchat *c, const char *name ) |
---|
| 341 | { |
---|
| 342 | irc_t *irc = bee->ui_data; |
---|
| 343 | irc_channel_t *ic = c->ui_data; |
---|
| 344 | char stripped[MAX_NICK_LENGTH+1], *full_name; |
---|
| 345 | |
---|
| 346 | /* Don't rename a channel if the user's in it already. */ |
---|
| 347 | if( ic->flags & IRC_CHANNEL_JOINED ) |
---|
| 348 | return FALSE; |
---|
| 349 | |
---|
| 350 | strncpy( stripped, name, MAX_NICK_LENGTH ); |
---|
| 351 | stripped[MAX_NICK_LENGTH] = '\0'; |
---|
| 352 | nick_strip( stripped ); |
---|
| 353 | if( set_getbool( &bee->set, "lcnicks" ) ) |
---|
| 354 | nick_lc( stripped ); |
---|
| 355 | |
---|
| 356 | full_name = g_strdup_printf( "&%s", stripped ); |
---|
| 357 | |
---|
| 358 | if( stripped[0] && irc_channel_by_name( irc, full_name ) == NULL ) |
---|
| 359 | { |
---|
| 360 | g_free( ic->name ); |
---|
| 361 | ic->name = full_name; |
---|
| 362 | } |
---|
| 363 | else |
---|
| 364 | { |
---|
| 365 | g_free( full_name ); |
---|
| 366 | } |
---|
| 367 | |
---|
| 368 | return TRUE; |
---|
| 369 | } |
---|
| 370 | |
---|
[a87754b] | 371 | /* IRC->IM */ |
---|
| 372 | static gboolean bee_irc_channel_chat_privmsg( irc_channel_t *ic, const char *msg ) |
---|
| 373 | { |
---|
| 374 | struct groupchat *c = ic->data; |
---|
| 375 | |
---|
| 376 | bee_chat_msg( ic->irc->b, c, msg, 0 ); |
---|
| 377 | |
---|
| 378 | return TRUE; |
---|
| 379 | |
---|
| 380 | } |
---|
| 381 | |
---|
[bfb99ee] | 382 | static gboolean bee_irc_channel_chat_part( irc_channel_t *ic, const char *msg ) |
---|
| 383 | { |
---|
| 384 | struct groupchat *c = ic->data; |
---|
| 385 | |
---|
| 386 | if( c->ic->acc->prpl->chat_leave ) |
---|
| 387 | c->ic->acc->prpl->chat_leave( c ); |
---|
| 388 | |
---|
| 389 | return TRUE; |
---|
| 390 | |
---|
| 391 | } |
---|
| 392 | |
---|
[a87754b] | 393 | static const struct irc_channel_funcs irc_channel_im_chat_funcs = { |
---|
| 394 | bee_irc_channel_chat_privmsg, |
---|
[d343eaa] | 395 | NULL, /* join */ |
---|
[bfb99ee] | 396 | bee_irc_channel_chat_part, |
---|
[d343eaa] | 397 | NULL, /* topic */ |
---|
[a87754b] | 398 | }; |
---|
| 399 | |
---|
[aea8b68] | 400 | |
---|
[e4816ea] | 401 | /* IM->IRC: File transfers */ |
---|
[17a6ee9] | 402 | static file_transfer_t *bee_irc_ft_in_start( bee_t *bee, bee_user_t *bu, const char *file_name, size_t file_size ) |
---|
| 403 | { |
---|
| 404 | return dccs_send_start( bu->ic, (irc_user_t *) bu->ui_data, file_name, file_size ); |
---|
| 405 | } |
---|
| 406 | |
---|
[a87754b] | 407 | static gboolean bee_irc_ft_out_start( struct im_connection *ic, file_transfer_t *ft ) |
---|
[17a6ee9] | 408 | { |
---|
| 409 | return dccs_recv_start( ft ); |
---|
| 410 | } |
---|
| 411 | |
---|
[a87754b] | 412 | static void bee_irc_ft_close( struct im_connection *ic, file_transfer_t *ft ) |
---|
[17a6ee9] | 413 | { |
---|
| 414 | return dcc_close( ft ); |
---|
| 415 | } |
---|
| 416 | |
---|
[a87754b] | 417 | static void bee_irc_ft_finished( struct im_connection *ic, file_transfer_t *file ) |
---|
[17a6ee9] | 418 | { |
---|
| 419 | dcc_file_transfer_t *df = file->priv; |
---|
| 420 | |
---|
| 421 | if( file->bytes_transferred >= file->file_size ) |
---|
| 422 | dcc_finish( file ); |
---|
| 423 | else |
---|
| 424 | df->proto_finished = TRUE; |
---|
| 425 | } |
---|
| 426 | |
---|
[d860a8d] | 427 | const struct bee_ui_funcs irc_ui_funcs = { |
---|
[81e04e1] | 428 | bee_irc_user_new, |
---|
[d860a8d] | 429 | bee_irc_user_free, |
---|
[1d39159] | 430 | bee_irc_user_fullname, |
---|
[d860a8d] | 431 | bee_irc_user_status, |
---|
[f012a9f] | 432 | bee_irc_user_msg, |
---|
[573dab0] | 433 | bee_irc_user_typing, |
---|
[17a6ee9] | 434 | |
---|
[aea8b68] | 435 | bee_irc_chat_new, |
---|
| 436 | bee_irc_chat_free, |
---|
[27e2c66] | 437 | bee_irc_chat_log, |
---|
| 438 | bee_irc_chat_msg, |
---|
[aea8b68] | 439 | bee_irc_chat_add_user, |
---|
[b17ce85] | 440 | bee_irc_chat_remove_user, |
---|
[d343eaa] | 441 | bee_irc_chat_name_hint, |
---|
[aea8b68] | 442 | |
---|
[17a6ee9] | 443 | bee_irc_ft_in_start, |
---|
| 444 | bee_irc_ft_out_start, |
---|
| 445 | bee_irc_ft_close, |
---|
| 446 | bee_irc_ft_finished, |
---|
[81e04e1] | 447 | }; |
---|