Changeset 934db064 for irc.h


Ignore:
Timestamp:
2010-09-01T22:09:27Z (14 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
2dcaf9a
Parents:
0c85c08
Message:

Do encryption and decryption. Somehow SMP and other things aren't working
so well yet, at least when testing with Pidgin on the other side. Not sure
where the bug is.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • irc.h

    r0c85c08 r934db064  
    230230        void (*irc_free)( irc_t *irc );
    231231       
     232        /* Problem with the following two functions is ordering if multiple
     233           plugins are handling them. Let's keep fixing that problem for
     234           whenever it becomes important. */
     235       
    232236        /* Called by bee_irc_user_privmsg_cb(). Return NULL if you want to
    233237           abort sending the msg. */
    234         char* (*filter_msg_out)( irc_user_t *iu, const char *msg, int flags );
     238        char* (*filter_msg_out)( irc_user_t *iu, char *msg, int flags );
    235239        /* Called by bee_irc_user_msg(). Return NULL if you swallowed the
    236240           message and don't want anything to go to the user. */
    237         char* (*filter_msg_in)( irc_user_t *iu, const char *msg, int flags );
     241        char* (*filter_msg_in)( irc_user_t *iu, char *msg, int flags );
    238242} irc_plugin_t;
    239243
Note: See TracChangeset for help on using the changeset viewer.