Changeset 24b8bbb for irc_user.c


Ignore:
Timestamp:
2010-04-12T00:06:49Z (14 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
89c11e7
Parents:
e21c0f8
Message:

Start handling CTCPs, in a saner way than before.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • irc_user.c

    re21c0f8 r24b8bbb  
    147147}
    148148
     149static gboolean root_ctcp( irc_user_t *iu, char * const *ctcp )
     150{
     151        if( g_strcasecmp( ctcp[0], "VERSION" ) == 0 )
     152        {
     153        }
     154       
     155        return TRUE;
     156}
     157
    149158const struct irc_user_funcs irc_user_root_funcs = {
    150159        root_privmsg,
     160        root_ctcp,
    151161};
    152162
Note: See TracChangeset for help on using the changeset viewer.