Changes in / [68b50b5f:9c62a7c]


Ignore:
Files:
2 added
6 edited

Legend:

Unmodified
Added
Removed
  • Makefile

    r68b50b5f r9c62a7c  
    1010
    1111# Program variables
    12 objects = account.o bitlbee.o commands.o conf.o crypting.o help.o ini.o irc.o log.o nick.o query.o set.o unix.o url.o user.o
     12objects = account.o bitlbee.o commands.o conf.o crypting.o help.o ini.o irc.o log.o nick.o query.o set.o unix.o url.o user.o debug.o
    1313subdirs = protocols
    1414
  • bitlbee.c

    r68b50b5f r9c62a7c  
    4141                                     &size );
    4242       
     43        count_io_event(source, "main");
     44       
    4345        log_message( LOGLVL_INFO, "Creating new connection with fd %d.", new_socket );
    4446        irc_new( new_socket );
     
    123125        int st;
    124126       
     127        count_io_event(source, "main");
     128
    125129        if( condition & G_IO_ERR || condition & G_IO_HUP )
    126130        {
     
    177181        time_t newtime;
    178182#endif
     183
     184        count_io_event(source, "main");
    179185
    180186#ifdef FLOOD_SEND       
  • bitlbee.h

    r68b50b5f r9c62a7c  
    107107#include "help.h"
    108108#include "query.h"
     109#include "debug.h"
    109110#include "sock.h"
    110111
  • commands.c

    r68b50b5f r9c62a7c  
    5252        { "import_buddies", 1, cmd_import_buddies },
    5353        { "qlist",          0, cmd_qlist },
     54        { "dump",           0, cmd_dump },
    5455        { NULL }
    5556};
     
    795796        return( 0 );
    796797}
     798
     799int cmd_dump( irc_t *irc, char **cmd ) {
     800        write_io_activity();
     801        irc_usermsg(irc, "Wrote GIO activity log to disk.");   
     802       
     803        return( 0 );
     804}
  • doc/CHANGES

    r68b50b5f r9c62a7c  
    1 Version 1.0:
    2 - Removed some crashy debugging code.
    3 
    4 Finished ...
    5 
    61Version 0.99:
    72- Fixed memory initialization bug in OSCAR module that caused crashes on
  • protocols/proxy.c

    r68b50b5f r9c62a7c  
    164164#endif
    165165       
     166        count_io_event(source, "proxy");
     167       
    166168        if (condition & GAIM_READ_COND)
    167169                gaim_cond |= GAIM_INPUT_READ;
Note: See TracChangeset for help on using the changeset viewer.