Changes in / [94281ef:2cdd8ce]


Ignore:
Files:
1 added
17 edited

Legend:

Unmodified
Added
Removed
  • account.c

    r94281ef r2cdd8ce  
    2828#include "account.h"
    2929
    30 account_t *account_add( irc_t *irc, int protocol, char *user, char *pass )
     30account_t *account_add( irc_t *irc, struct prpl *prpl, char *user, char *pass )
    3131{
    3232        account_t *a;
     
    4242        }
    4343       
    44         a->protocol = protocol;
     44        a->prpl = prpl;
    4545        a->user = g_strdup( user );
    4646        a->pass = g_strdup( pass );
     
    6666        for( a = irc->accounts; a; a = a->next )
    6767        {
    68                 if( g_strcasecmp( id, proto_name[a->protocol] ) == 0 )
     68                if( g_strcasecmp( id, a->prpl->name ) == 0 )
    6969                {
    7070                        if( !ret )
     
    124124        }
    125125       
    126         if( proto_prpl[a->protocol]->login == NULL )
     126        if (a->prpl == NULL )
    127127        {
    128                 irc_usermsg( irc, "Support for protocol %s is not included in this BitlBee", proto_name[a->protocol] );
     128                irc_usermsg( irc, "Support for protocol %s is not included in this BitlBee", a->prpl->name );
    129129                return;
    130130        }
     
    134134        u = g_new0 ( struct aim_user, 1 );
    135135        u->irc = irc;
    136         u->protocol = a->protocol;
     136        u->prpl = a->prpl;
    137137        strncpy( u->username, a->user, sizeof( u->username ) - 1 );
    138138        strncpy( u->password, a->pass, sizeof( u->password ) - 1 );
     
    142142        a->reconnect = 0;
    143143       
    144         proto_prpl[a->protocol]->login( u );
     144        a->prpl->login( u );
    145145}
    146146
  • account.h

    r94281ef r2cdd8ce  
    2929typedef struct account
    3030{
    31         int protocol;
     31        struct prpl *prpl;
    3232        char *user;
    3333        char *pass;
     
    4141} account_t;
    4242
    43 account_t *account_add( irc_t *irc, int protocol, char *user, char *pass );
     43account_t *account_add( irc_t *irc, struct prpl *prpl, char *user, char *pass );
    4444account_t *account_get( irc_t *irc, char *id );
    4545void account_del( irc_t *irc, account_t *acc );
  • bitlbee.c

    r94281ef r2cdd8ce  
    236236}
    237237
     238/* DO NOT USE THIS FUNCTION IN NEW CODE. This
     239 * function is here merely because the save/load code still uses
     240 * ids rather then names */
     241struct prpl *find_protocol_by_id(int id)
     242{
     243        switch (id) {
     244        case 1: return find_protocol("oscar");
     245        case 4: return find_protocol("msn");
     246        case 2: return find_protocol("yahoo");
     247        case 8: return find_protocol("jabber");
     248        default: break;
     249        }
     250        return NULL;
     251}
     252
    238253int bitlbee_load( irc_t *irc, char* password )
    239254{
    240255        char s[512];
    241256        char *line;
    242         int proto;
     257        char proto[20];
    243258        char nick[MAX_NICK_LENGTH+1];
    244259        FILE *fp;
     
    275290        fp = fopen( s, "r" );
    276291        if( !fp ) return( 0 );
    277         while( fscanf( fp, "%s %d %s", s, &proto, nick ) > 0 )
    278         {
     292        while( fscanf( fp, "%s %s %s", s, proto, nick ) > 0 )
     293        {
     294                struct prpl *prpl;
     295
     296                prpl = find_protocol(proto);
     297
     298                /* Older files saved the protocol number rather then the protocol name */
     299                if (!prpl && atoi(proto)) {
     300                        prpl = find_protocol_by_id(atoi(proto));
     301                }
     302
     303                if (!prpl)
     304                        continue;
     305
    279306                http_decode( s );
    280                 nick_set( irc, s, proto, nick );
     307                nick_set( irc, s, prpl, nick );
    281308        }
    282309        fclose( fp );
     
    333360                s[169] = 0; /* Prevent any overflow (169 ~ 512 / 3) */
    334361                http_encode( s );
    335                 g_snprintf( s + strlen( s ), 510 - strlen( s ), " %d %s", n->proto, n->nick );
     362                g_snprintf( s + strlen( s ), 510 - strlen( s ), " %s %s", n->proto->name, n->nick );
    336363                if( fprintf( fp, "%s\n", s ) != strlen( s ) + 1 )
    337364                {
     
    375402        for( a = irc->accounts; a; a = a->next )
    376403        {
    377                 if( a->protocol == PROTO_OSCAR || a->protocol == PROTO_ICQ || a->protocol == PROTO_TOC )
     404                if( !strcmp( a->prpl->name, "oscar" ) )
    378405                        g_snprintf( s, sizeof( s ), "account add oscar \"%s\" \"%s\" %s", a->user, a->pass, a->server );
    379406                else
    380407                        g_snprintf( s, sizeof( s ), "account add %s \"%s\" \"%s\" \"%s\"",
    381                                     proto_name[a->protocol], a->user, a->pass, a->server ? a->server : "" );
     408                                    a->prpl->name, a->user, a->pass, a->server ? a->server : "" );
    382409               
    383410                line = obfucrypt( irc, s );
  • commands.c

    r94281ef r2cdd8ce  
    184184        if( g_strcasecmp( cmd[1], "add" ) == 0 )
    185185        {
    186                 int prot;
     186                struct prpl *prpl;
    187187               
    188188                if( cmd[2] == NULL || cmd[3] == NULL || cmd[4] == NULL )
     
    192192                }
    193193               
    194                 for( prot = 0; prot < PROTO_MAX; prot ++ )
    195                         if( proto_name[prot] && *proto_name[prot] && g_strcasecmp( proto_name[prot], cmd[2] ) == 0 )
    196                                 break;
    197                
    198                 if( ( prot == PROTO_MAX ) || ( proto_prpl[prot] == NULL ) )
     194                prpl = find_protocol(cmd[2]);
     195               
     196                if( prpl == NULL )
    199197                {
    200198                        irc_usermsg( irc, "Unknown protocol" );
     
    202200                }
    203201
    204                 if( prot == PROTO_OSCAR && cmd[5] == NULL )
    205                 {
    206                         irc_usermsg( irc, "Not enough parameters" );
    207                         return( 0 );
    208                 }
    209                
    210                 a = account_add( irc, prot, cmd[3], cmd[4] );
     202                a = account_add( irc, prpl, cmd[3], cmd[4] );
    211203               
    212204                if( cmd[5] )
     
    252244                                con = "";
    253245                       
    254                         if( a->protocol == PROTO_OSCAR || a->protocol == PROTO_ICQ || a->protocol == PROTO_TOC )
    255                                 irc_usermsg( irc, "%2d. OSCAR, %s on %s%s", i, a->user, a->server, con );
    256                         else
    257                                 irc_usermsg( irc, "%2d. %s, %s%s", i, proto_name[a->protocol], a->user, con );
     246                        irc_usermsg( irc, "%2d. %s, %s%s", i, a->prpl->name, a->user, con );
    258247                       
    259248                        i ++;
     
    372361                else
    373362                {
    374                         nick_set( irc, cmd[2], a->gc->protocol, cmd[3] );
     363                        nick_set( irc, cmd[2], a->gc->prpl, cmd[3] );
    375364                }
    376365        }
     
    453442        else if( u->send_handler == buddy_send_handler )
    454443        {
    455                 nick_set( irc, u->handle, u->gc->protocol, cmd[2] );
     444                nick_set( irc, u->handle, u->gc->prpl, cmd[2] );
    456445        }
    457446       
     
    664653        if( online == 1 ) for( u = irc->users; u; u = u->next ) if( u->gc && u->online && !u->away )
    665654        {
    666                 g_snprintf( s, 63, "%s@%s (%s)", u->user, u->host, proto_name[u->gc->user->protocol] );
     655                g_snprintf( s, 63, "%s@%s (%s)", u->user, u->host, u->gc->user->prpl->name );
    667656                irc_usermsg( irc, "%-16.16s  %-40.40s  %s", u->nick, s, "Online" );
    668657                n_online ++;
     
    671660        if( away == 1 ) for( u = irc->users; u; u = u->next ) if( u->gc && u->online && u->away )
    672661        {
    673                 g_snprintf( s, 63, "%s@%s (%s)", u->user, u->host, proto_name[u->gc->user->protocol] );
     662                g_snprintf( s, 63, "%s@%s (%s)", u->user, u->host, u->gc->user->prpl->name );
    674663                irc_usermsg( irc, "%-16.16s  %-40.40s  %s", u->nick, s, u->away );
    675664                n_away ++;
     
    678667        if( offline == 1 ) for( u = irc->users; u; u = u->next ) if( u->gc && !u->online )
    679668        {
    680                 g_snprintf( s, 63, "%s@%s (%s)", u->user, u->host, proto_name[u->gc->user->protocol] );
     669                g_snprintf( s, 63, "%s@%s (%s)", u->user, u->host, u->gc->user->prpl->name );
    681670                irc_usermsg( irc, "%-16.16s  %-40.40s  %s", u->nick, s, "Offline" );
    682671                n_offline ++;
     
    739728        for( num = 0; q; q = q->next, num ++ )
    740729                if( q->gc ) /* Not necessary yet, but it might come later */
    741                         irc_usermsg( irc, "%d, %s(%s): %s", num, proto_name[q->gc->protocol], q->gc->username, q->question );
     730                        irc_usermsg( irc, "%d, %s(%s): %s", num, q->gc->prpl->name, q->gc->username, q->question );
    742731                else
    743732                        irc_usermsg( irc, "%d, BitlBee: %s", num, q->question );
     
    787776        for( n = gc->irc->nicks; n; n = n->next )
    788777        {
    789                 if( n->proto == gc->protocol && !user_findhandle( gc, n->handle ) )
     778                if( n->proto == gc->prpl && !user_findhandle( gc, n->handle ) )
    790779                {
    791780                        gc->prpl->add_buddy( gc, n->handle );
  • configure

    r94281ef r2cdd8ce  
    1414datadir='$prefix/share/bitlbee/'
    1515config='/var/lib/bitlbee/'
     16plugindir='$prefix/lib/bitlbee'
    1617
    1718msn=1
     
    4546--mandir=...                                            $mandir
    4647--datadir=...                                           $datadir
     48--plugindir=...                                         $plugindir
    4749--config=...                                            $config
    4850
     
    7375datadir=`eval echo "$datadir/" | sed 's/\/\{1,\}/\//g'`
    7476config=`eval echo "$config/" | sed 's/\/\{1,\}/\//g'`
     77plugindir=`eval echo "$plugindir/" | sed 's/\/\{1,\}/\//g'`
    7578
    7679cat<<EOF>Makefile.settings
     
    8184MANDIR=$mandir
    8285DATADIR=$datadir
     86PLUGINDIR=$plugindir
    8387CONFIG=$config
    8488
     
    101105#define ETCDIR "$etcdir"
    102106#define VARDIR "$datadir"
     107#define PLUGINDIR "$plugindir"
    103108#define ARCH "$arch"
    104109#define CPU "$cpu"
     
    141146if type pkg-config > /dev/null 2>/dev/null && pkg-config glib-2.0; then
    142147        cat<<EOF>>Makefile.settings
    143 EFLAGS+=`pkg-config --libs glib-2.0`
    144 CFLAGS+=`pkg-config --cflags glib-2.0`
     148EFLAGS+=`pkg-config --libs glib-2.0 gmodule-2.0`
     149CFLAGS+=`pkg-config --cflags glib-2.0 gmodule-2.0`
    145150EOF
    146151        echo '#define GLIB2' >> config.h
  • irc.c

    r94281ef r2cdd8ce  
    11651165                if( u->gc )
    11661166                        irc_reply( irc, 312, "%s %s.%s :%s network", u->nick, u->gc->user->username,
    1167                                    *u->gc->user->proto_opt[0] ? u->gc->user->proto_opt[0] : "", proto_name[u->gc->user->protocol] );
     1167                                   *u->gc->user->proto_opt[0] ? u->gc->user->proto_opt[0] : "", u->gc->prpl->name );
    11681168                else
    11691169                        irc_reply( irc, 312, "%s %s :%s", u->nick, irc->myhost, IRCD_INFO );
  • nick.c

    r94281ef r2cdd8ce  
    2727#include "bitlbee.h"
    2828
    29 void nick_set( irc_t *irc, char *handle, int proto, char *nick )
     29void nick_set( irc_t *irc, char *handle, struct prpl *proto, char *nick )
    3030{
    3131        nick_t *m = NULL, *n = irc->nicks;
     
    5656}
    5757
    58 char *nick_get( irc_t *irc, char *handle, int proto, const char *realname )
     58char *nick_get( irc_t *irc, char *handle, struct prpl *proto, const char *realname )
    5959{
    6060        static char nick[MAX_NICK_LENGTH+1];
  • nick.h

    r94281ef r2cdd8ce  
    2727{
    2828        char *handle;
    29         int proto;
     29        struct prpl *proto;
    3030        char *nick;
    3131        struct __NICK *next;
    3232} nick_t;
    3333
    34 void nick_set( irc_t *irc, char *handle, int proto, char *nick );
    35 char *nick_get( irc_t *irc, char *handle, int proto, const char *realname );
     34void nick_set( irc_t *irc, char *handle, struct prpl *proto, char *nick );
     35char *nick_get( irc_t *irc, char *handle, struct prpl *proto, const char *realname );
    3636void nick_del( irc_t *irc, char *nick );
    3737void nick_strip( char *nick );
  • protocols/jabber/jabber.c

    r94281ef r2cdd8ce  
    157157#define JCS_CLOSED  3   /* closed */
    158158
    159 
    160 static char *jabber_name()
    161 {
    162         return "Jabber";
    163 }
    164159
    165160#define STATE_EVT(arg) if(gjc->on_state) { (gjc->on_state)(gjc, (arg) ); }
     
    24132408}
    24142409
    2415 static struct prpl *my_protocol = NULL;
    2416 
    2417 void jabber_init(struct prpl *ret)
    2418 {
     2410
     2411void jabber_init()
     2412{
     2413        struct prpl *ret = g_new0(struct prpl, 1);
     2414
    24192415        /* the NULL's aren't required but they're nice to have */
    2420         ret->protocol = PROTO_JABBER;
    2421         ret->name = jabber_name;
     2416        ret->name = "jabber";
    24222417        ret->away_states = jabber_away_states;
    24232418        ret->actions = jabber_actions;
     
    24432438        ret->cmp_buddynames = g_strcasecmp;
    24442439
    2445         my_protocol = ret;
    2446 }
     2440        register_protocol (ret);
     2441}
  • protocols/msn/msn.c

    r94281ef r2cdd8ce  
    2626#include "nogaim.h"
    2727#include "msn.h"
    28 
    29 static struct prpl *my_protocol = NULL;
    3028
    3129static void msn_login( struct aim_user *acct )
     
    375373}
    376374
    377 void msn_init(struct prpl *ret)
    378 {
    379         ret->protocol = PROTO_MSN;
     375void msn_init()
     376{
     377        struct prpl *ret = g_new0(struct prpl, 1);
     378        ret->name = "msn";
    380379        ret->login = msn_login;
    381380        ret->close = msn_close;
     
    400399        ret->cmp_buddynames = g_strcasecmp;
    401400
    402         my_protocol = ret;
    403 }
     401        register_protocol(ret);
     402}
  • protocols/nogaim.c

    r94281ef r2cdd8ce  
    3939#include <iconv.h>
    4040
    41 struct prpl *proto_prpl[PROTO_MAX];
    42 char proto_name[PROTO_MAX][8] = { "TOC", "OSCAR", "YAHOO", "ICQ", "MSN", "", "", "", "JABBER", "", "", "", "", "", "", "" };
    43 
    4441static char *proto_away_alias[7][5] =
    4542{
     
    5855GSList *connections;
    5956
     57gboolean load_plugin(char *path)
     58{
     59        void (*init_function) (void);
     60       
     61        GModule *mod = g_module_open(path, G_MODULE_BIND_LAZY);
     62
     63        if(!mod) {
     64                log_message(LOGLVL_ERROR, "Can't find `%s', not loading", path);
     65                return FALSE;
     66        }
     67
     68        if(!g_module_symbol(mod,"init_plugin",(gpointer *) &init_function)) {
     69                log_message(LOGLVL_WARNING, "Can't find function `init_plugin' in `%s'\n", path);
     70                return FALSE;
     71        }
     72
     73        init_function();
     74
     75        return TRUE;
     76}
    6077
    6178/* nogaim.c */
    6279
     80GList *protocols = NULL;
     81 
     82void register_protocol (struct prpl *p)
     83{
     84        protocols = g_list_append(protocols, p);
     85}
     86
     87 
     88struct prpl *find_protocol(const char *name)
     89{
     90        GList *gl;
     91        for (gl = protocols; gl; gl = gl->next)
     92        {
     93                struct prpl *proto = gl->data;
     94                if(!g_strcasecmp(proto->name, name))
     95                        return proto;
     96        }
     97        return NULL;
     98}
     99
     100/* nogaim.c */
    63101void nogaim_init()
    64102{
    65         proto_prpl[PROTO_MSN] = g_new0 ( struct prpl, 1 );
     103        GDir *dir;
     104        GError *error = NULL;
     105
    66106#ifdef WITH_MSN
    67         msn_init( proto_prpl[PROTO_MSN] );
     107        extern void msn_init();
     108        msn_init();
    68109#endif
    69110
    70         proto_prpl[PROTO_OSCAR] = g_new0( struct prpl, 1 );
    71111#ifdef WITH_OSCAR
    72         oscar_init( proto_prpl[PROTO_OSCAR] );
     112        extern void oscar_init();
     113        oscar_init();
    73114#endif
    74115       
    75         proto_prpl[PROTO_YAHOO] = g_new0( struct prpl, 1 );
    76116#ifdef WITH_YAHOO
    77         byahoo_init( proto_prpl[PROTO_YAHOO] );
     117        extern void byahoo_init();
     118        byahoo_init();
    78119#endif
    79120       
    80         proto_prpl[PROTO_JABBER] = g_new0( struct prpl, 1 );
    81121#ifdef WITH_JABBER
    82         jabber_init( proto_prpl[PROTO_JABBER] );
     122        extern void jabber_init();
     123        jabber_init();
    83124#endif
     125
     126        dir = g_dir_open(PLUGINDIR, 0, &error);
     127
     128        if (dir) {
     129                const gchar *entry;
     130                char *path;
     131
     132                while ((entry = g_dir_read_name(dir))) {
     133                        path = g_build_filename(PLUGINDIR, entry, NULL);
     134                        if(!path) {
     135                                log_message(LOGLVL_WARNING, "Can't build path for %s\n", entry);
     136                                continue;
     137                        }
     138
     139                        load_plugin(path);
     140
     141                        g_free(path);
     142                }
     143
     144                g_dir_close(dir);
     145        }
    84146}
    85147
     
    172234        gc = g_new0( struct gaim_connection, 1 );
    173235       
    174         gc->protocol = user->protocol;
    175         gc->prpl = proto_prpl[gc->protocol];
     236        gc->prpl = user->prpl;
    176237        g_snprintf( gc->username, sizeof( gc->username ), "%s", user->username );
    177238        g_snprintf( gc->password, sizeof( gc->password ), "%s", user->password );
     
    251312                strip_html( msg );
    252313       
    253         irc_usermsg( gc->irc, "%s(%s) - %s", proto_name[gc->protocol], gc->username, msg );
     314        irc_usermsg( gc->irc, "%s(%s) - %s", gc->prpl->name, gc->username, msg );
    254315}
    255316
     
    283344        if( u && u->away ) proto_away( gc, u->away );
    284345       
    285         if( gc->protocol == PROTO_ICQ )
     346        if( !strcmp(gc->prpl->name, "icq") )
    286347        {
    287348                for( u = gc->irc->users; u; u = u->next )
     
    411472       
    412473        memset( nick, 0, MAX_NICK_LENGTH + 1 );
    413         strcpy( nick, nick_get( gc->irc, handle, gc->protocol, realname ) );
     474        strcpy( nick, nick_get( gc->irc, handle, gc->prpl, realname ) );
    414475       
    415476        u = user_add( gc->irc, nick );
     
    435496        else
    436497        {
    437                 u->host = g_strdup( proto_name[gc->user->protocol] );
     498                u->host = g_strdup( gc->user->prpl->name );
    438499                u->user = g_strdup( handle );
    439500        }
     
    564625        }
    565626       
    566         if( ( type & UC_UNAVAILABLE ) && ( gc->protocol == PROTO_OSCAR || gc->protocol == PROTO_TOC ) )
     627        if( ( type & UC_UNAVAILABLE ) && ( !strcmp(gc->prpl->name, "oscar") || !strcmp(gc->prpl->name, "icq")) )
    567628        {
    568629                u->away = g_strdup( "Away" );
    569630        }
    570         else if( ( type & UC_UNAVAILABLE ) && ( gc->protocol == PROTO_JABBER ) )
     631        else if( ( type & UC_UNAVAILABLE ) && ( !strcmp(gc->prpl->name, "jabber") ) )
    571632        {
    572633                if( type & UC_DND )
  • protocols/nogaim.h

    r94281ef r2cdd8ce  
    7272        /* we need to do either oscar or TOC */
    7373        /* we make this as an int in case if we want to add more protocols later */
    74         int protocol;
    7574        struct prpl *prpl;
    7675        guint32 flags;
     
    152151        char user_info[2048];
    153152        int options;
    154         int protocol;
     153        struct prpl *prpl;
    155154        /* prpls can use this to save information about the user,
    156155         * like which server to connect to, etc */
     
    161160};
    162161
     162struct ft
     163{
     164        const char *filename;
     165       
     166        /* Total number of bytes in file */
     167        size_t total_bytes;
     168       
     169        /* Current number of bytes received */
     170        size_t cur_bytes;
     171};
     172
     173struct ft_request
     174{
     175        const char *filename;
     176        struct gaim_connection *gc;
     177};
     178
     179typedef void (*ft_recv_handler) (struct ft *, void *data, size_t len);
     180
    163181struct prpl {
    164         int protocol;
    165182        int options;
    166         char *(* name)();
     183        const char *name;
    167184
    168185        /* for ICQ and Yahoo, who have off/on per-conversation options */
     
    217234        void (* group_buddy)    (struct gaim_connection *, char *who, char *old_group, char *new_group);
    218235
     236        /* file transfers */
     237        struct ft_send_req *(* req_send_file) (struct gaim_connection *, const char *file);
     238        void (* send_file_part) (struct gaim_connection *, struct ft*, void *data, size_t length);
     239        void (* accept_recv_file) (struct gaim_connection *, struct ft*, ft_recv_handler);
     240
    219241        void (* buddy_free)     (struct buddy *);
    220242
     
    223245        int (* cmp_buddynames) (const char *who1, const char *who2);
    224246};
    225 
    226 #define PROTO_TOC       0
    227 #define PROTO_OSCAR     1
    228 #define PROTO_YAHOO     2
    229 #define PROTO_ICQ       3
    230 #define PROTO_MSN       4
    231 #define PROTO_IRC       5
    232 #define PROTO_FTP       6
    233 #define PROTO_VGATE     7
    234 #define PROTO_JABBER    8
    235 #define PROTO_NAPSTER   9
    236 #define PROTO_ZEPHYR    10
    237 #define PROTO_GADUGADU  11
    238 #define PROTO_MAX       16
    239 
    240 extern char proto_name[PROTO_MAX][8];
    241247
    242248#define UC_UNAVAILABLE  1
     
    249255
    250256G_MODULE_EXPORT GSList *get_connections();
    251 extern struct prpl *proto_prpl[16];
     257G_MODULE_EXPORT struct prpl *find_protocol(const char *name);
     258G_MODULE_EXPORT void register_protocol(struct prpl *);
    252259
    253260/* nogaim.c */
     
    319326G_MODULE_EXPORT void info_string_append(GString *str, char *newline, char *name, char *value);
    320327
    321 #ifdef WITH_MSN
    322 /* msn.c */
    323 G_MODULE_EXPORT void msn_init( struct prpl *ret );
    324 #endif
    325 
    326 #ifdef WITH_OSCAR
    327 /* oscar.c */
    328 G_MODULE_EXPORT void oscar_init( struct prpl *ret );
    329 #endif
    330 
    331 #ifdef WITH_JABBER
    332 /* jabber.c */
    333 G_MODULE_EXPORT void jabber_init( struct prpl *ret );
    334 #endif
    335 
    336 #ifdef WITH_YAHOO
    337 /* yahoo.c */
    338 G_MODULE_EXPORT void byahoo_init( struct prpl *ret );
    339 #endif
     328/* file transfers */
     329G_MODULE_EXPORT void ft_progress( struct ft *, int);
     330G_MODULE_EXPORT void ft_incoming( struct ft_request * );
     331G_MODULE_EXPORT void ft_accepted( struct ft_request *, struct ft *);
     332G_MODULE_EXPORT void ft_denied( struct ft_request *, const char *reason);
    340333
    341334/* prefs.c */
  • protocols/oscar/oscar.c

    r94281ef r2cdd8ce  
    364364                odata->icq = TRUE;
    365365                /* this is odd but it's necessary for a proper do_import and do_export */
    366                 gc->protocol = PROTO_ICQ;
    367366                gc->password[8] = 0;
    368367        } else {
    369                 gc->protocol = PROTO_TOC;
    370368                gc->flags |= OPT_CONN_HTML;
    371369        }
     
    24902488}
    24912489
    2492 static struct prpl *my_protocol = NULL;
    2493 
    2494 void oscar_init(struct prpl *ret) {
    2495         ret->protocol = PROTO_OSCAR;
     2490void oscar_init()
     2491{
     2492        struct prpl *ret = g_new0(struct prpl, 1);
     2493        ret->name = "oscar";
    24962494        ret->away_states = oscar_away_states;
    24972495        ret->login = oscar_login;
     
    25112509        ret->cmp_buddynames = aim_sncmp;
    25122510        ret->get_status_string = oscar_get_status_string;
    2513 
    25142511        ret->send_typing = oscar_send_typing;
    25152512
    2516         my_protocol = ret;
    2517 }
     2513        register_protocol(ret);
     2514}
  • protocols/proxy.c

    r94281ef r2cdd8ce  
    5050#define GAIM_ERR_COND   (G_IO_HUP | G_IO_ERR | G_IO_NVAL)
    5151
    52 /*FIXME*               
    53         #ifndef _WIN32
    54                 if (getsockopt(fd, SOL_SOCKET, SO_ERROR, &error, &len) < 0) {
    55                         closesocket(fd);
    56                         g_free(phb);
    57                         return -1;
    58                 }
    59                 fcntl(fd, F_SETFL, 0);
    60 #endif*/
    61 
    6252char proxyhost[128] = "";
    6353int proxyport = 0;
  • protocols/yahoo/yahoo.c

    r94281ef r2cdd8ce  
    6464};
    6565
    66 static char *yahoo_name()
    67 {
    68         return "Yahoo";
    69 }
    70 
    71 static struct prpl *my_protocol = NULL;
    7266static GSList *byahoo_inputs = NULL;
    7367static int byahoo_chat_id = 0;
     
    396390}
    397391
    398 void byahoo_init( struct prpl *ret )
    399 {
    400         ret->protocol = PROTO_YAHOO;
    401         ret->name = yahoo_name;
     392void byahoo_init( )
     393{
     394        struct prpl *ret = g_new0(struct prpl, 1);
     395        ret->name = "yahoo";
    402396       
    403397        ret->login = byahoo_login;
    404398        ret->close = byahoo_close;
    405399        ret->send_im = byahoo_send_im;
    406         ret->send_typing = byahoo_send_typing;
    407400        ret->get_info = byahoo_get_info;
    408401        ret->away_states = byahoo_away_states;
     
    412405        ret->remove_buddy = byahoo_remove_buddy;
    413406        ret->get_status_string = byahoo_get_status_string;
     407        ret->send_typing = byahoo_send_typing;
    414408       
    415409        ret->chat_send = byahoo_chat_send;
     
    419413        ret->cmp_buddynames = g_strcasecmp;
    420414       
    421         my_protocol = ret;
     415        register_protocol(ret);
    422416}
    423417
     
    433427                yd = gc->proto_data;
    434428               
    435                 if( gc->protocol == PROTO_YAHOO && yd->y2_id == id )
     429                if( !strcmp(gc->prpl->name, "yahoo") && yd->y2_id == id )
    436430                        return( gc );
    437431        }
  • unix.c

    r94281ef r2cdd8ce  
    4747       
    4848        log_init( );
    49         nogaim_init( );
    50        
     49
     50        nogaim_init();
     51
    5152        CONF_FILE = g_strdup( CONF_FILE_DEF );
    5253       
  • url.h

    r94281ef r2cdd8ce  
    2626#include "bitlbee.h"
    2727
    28 #define PROTO_HTTP      2
     28#define PROTO_FTP               1
     29#define PROTO_HTTP              2
    2930#define PROTO_SOCKS4    3
    3031#define PROTO_SOCKS5    4
Note: See TracChangeset for help on using the changeset viewer.