Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • irc.h

    ra9ca7dd rf9756bd  
    4242{
    4343        USTATUS_OFFLINE = 0,
    44         USTATUS_AUTHORIZED,
    45         USTATUS_LOGGED_IN,
    46         USTATUS_IDENTIFIED,
    47         USTATUS_SHUTDOWN = -1
     44        USTATUS_AUTHORIZED = 1,
     45        USTATUS_LOGGED_IN = 2,
     46        USTATUS_IDENTIFIED = 4,
     47        USTATUS_SHUTDOWN = 8
    4848} irc_status_t;
    4949
     
    6161        char *sendbuffer;
    6262        char *readbuffer;
    63         int quit;
     63        GIConv iconv, oconv;
    6464
    6565        int sentbytes;
     
    7070        char *host;
    7171        char *realname;
    72         char *password;
     72        char *password; /* HACK: Used to save the user's password, but before
     73                           logging in, this may contain a password we should
     74                           send to identify after USER/NICK are received. */
    7375
    7476        char umode[8];
     
    9092        GHashTable *watches;
    9193        struct __NICK *nicks;
    92         struct help *help;
    9394        struct set *set;
    9495
    95         GIOChannel *io_channel;
    9696        gint r_watch_source_id;
    9797        gint w_watch_source_id;
     
    100100
    101101#include "user.h"
    102 #include "nick.h"
     102// #include "nick.h"
    103103
    104104extern GSList *irc_connection_list;
     
    142142
    143143void buddy_send_handler( irc_t *irc, user_t *u, char *msg, int flags );
     144struct groupchat *irc_chat_by_channel( irc_t *irc, char *channel );
    144145
    145146#endif
Note: See TracChangeset for help on using the changeset viewer.