Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • irc.h

    r1aa74f55 rad2d8bc  
    2727#define _IRC_H
    2828
     29#include "otr.h"
     30
    2931#define IRC_MAX_LINE 512
    30 #define IRC_MAX_ARGS 8
     32#define IRC_MAX_ARGS 16
    3133
    3234#define IRC_LOGIN_TIMEOUT 60
     
    8688        gint login_source_id; /* To slightly delay some events at login time. */
    8789       
     90        otr_t *otr;            /* OTR state and book keeping */
     91       
    8892        struct bee *b;
    8993} irc_t;
     
    9397        /* Replaced with iu->last_channel IRC_USER_PRIVATE = 1, */
    9498        IRC_USER_AWAY = 2,
     99       
     100        IRC_USER_OTR_ENCRYPTED = 0x10000,
     101        IRC_USER_OTR_TRUSTED   = 0x20000,
    95102} irc_user_flags_t;
    96103
     
    282289void irc_send_channel_user_mode_diff( irc_channel_t *ic, irc_user_t *iu,
    283290                                      irc_channel_user_flags_t old, irc_channel_user_flags_t new );
    284 void irc_send_invite( irc_user_t *iu, irc_channel_t *ic );
    285291
    286292/* irc_user.c */
Note: See TracChangeset for help on using the changeset viewer.