Changeset 0e8b3e8 for protocols


Ignore:
Timestamp:
2010-06-07T15:21:21Z (15 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
c5aefa4
Parents:
56699f0
Message:

Changing away_devoice will change current voice statuses in all channels.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • protocols/nogaim.c

    r56699f0 r0e8b3e8  
    536536        return bee_user_by_handle( ic->bee, ic, handle );
    537537}
    538 
    539 
    540 /* Misc. BitlBee stuff which shouldn't really be here */
    541 #if 0
    542 char *set_eval_away_devoice( set_t *set, char *value )
    543 {
    544         irc_t *irc = set->data;
    545         int st;
    546        
    547         if( !is_bool( value ) )
    548                 return SET_INVALID;
    549        
    550         st = bool2int( value );
    551        
    552         /* Horror.... */
    553        
    554         if( st != set_getbool( &irc->b->set, "away_devoice" ) )
    555         {
    556                 char list[80] = "";
    557                 user_t *u = irc->users;
    558                 int i = 0, count = 0;
    559                 char pm;
    560                 char v[80];
    561                
    562                 if( st )
    563                         pm = '+';
    564                 else
    565                         pm = '-';
    566                
    567                 while( u )
    568                 {
    569                         if( u->ic && u->online && !u->away )
    570                         {
    571                                 if( ( strlen( list ) + strlen( u->nick ) ) >= 79 )
    572                                 {
    573                                         for( i = 0; i < count; v[i++] = 'v' ); v[i] = 0;
    574                                         irc_write( irc, ":%s MODE %s %c%s%s",
    575                                                    irc->myhost,
    576                                                    irc->channel, pm, v, list );
    577                                        
    578                                         *list = 0;
    579                                         count = 0;
    580                                 }
    581                                
    582                                 sprintf( list + strlen( list ), " %s", u->nick );
    583                                 count ++;
    584                         }
    585                         u = u->next;
    586                 }
    587                
    588                 /* $v = 'v' x $i */
    589                 for( i = 0; i < count; v[i++] = 'v' ); v[i] = 0;
    590                 irc_write( irc, ":%s MODE %s %c%s%s", irc->myhost,
    591                                                             irc->channel, pm, v, list );
    592         }
    593        
    594         return value;
    595 }
    596 #endif
    597538
    598539/* The plan is to not allow straight calls to prpl functions anymore, but do
Note: See TracChangeset for help on using the changeset viewer.