Changeset da3b536 for protocols/nogaim.c


Ignore:
Timestamp:
2006-05-23T08:09:16Z (18 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
a9ca7dd
Parents:
226fce1
Message:

Added bim_ functions for block/allow list management to keep gc->permit/deny
up-to-date at run-time.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • protocols/nogaim.c

    r226fce1 rda3b536  
    10711071        return( NULL );
    10721072}
     1073
     1074void bim_add_allow( struct gaim_connection *gc, char *handle )
     1075{
     1076        if( g_slist_find_custom( gc->permit, handle, (GCompareFunc) gc->prpl->cmp_buddynames ) == NULL )
     1077        {
     1078                gc->permit = g_slist_prepend( gc->permit, g_strdup( handle ) );
     1079        }
     1080       
     1081        gc->prpl->add_permit( gc, handle );
     1082}
     1083
     1084void bim_rem_allow( struct gaim_connection *gc, char *handle )
     1085{
     1086        GSList *l;
     1087       
     1088        if( ( l = g_slist_find_custom( gc->permit, handle, (GCompareFunc) gc->prpl->cmp_buddynames ) ) )
     1089        {
     1090                g_free( l->data );
     1091                gc->permit = g_slist_delete_link( gc->permit, l );
     1092        }
     1093       
     1094        gc->prpl->rem_permit( gc, handle );
     1095}
     1096
     1097void bim_add_block( struct gaim_connection *gc, char *handle )
     1098{
     1099        if( g_slist_find_custom( gc->deny, handle, (GCompareFunc) gc->prpl->cmp_buddynames ) == NULL )
     1100        {
     1101                gc->deny = g_slist_prepend( gc->deny, g_strdup( handle ) );
     1102        }
     1103       
     1104        gc->prpl->add_deny( gc, handle );
     1105}
     1106
     1107void bim_rem_block( struct gaim_connection *gc, char *handle )
     1108{
     1109        GSList *l;
     1110       
     1111        if( ( l = g_slist_find_custom( gc->deny, handle, (GCompareFunc) gc->prpl->cmp_buddynames ) ) )
     1112        {
     1113                g_free( l->data );
     1114                gc->deny = g_slist_delete_link( gc->deny, l );
     1115        }
     1116       
     1117        gc->prpl->rem_deny( gc, handle );
     1118}
Note: See TracChangeset for help on using the changeset viewer.