Changes in / [9c62a7c:68b50b5f]
- Files:
-
- 2 deleted
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
Makefile
r9c62a7c r68b50b5f 10 10 11 11 # 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 debug.o12 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 13 13 subdirs = protocols 14 14 -
bitlbee.c
r9c62a7c r68b50b5f 41 41 &size ); 42 42 43 count_io_event(source, "main");44 45 43 log_message( LOGLVL_INFO, "Creating new connection with fd %d.", new_socket ); 46 44 irc_new( new_socket ); … … 125 123 int st; 126 124 127 count_io_event(source, "main");128 129 125 if( condition & G_IO_ERR || condition & G_IO_HUP ) 130 126 { … … 181 177 time_t newtime; 182 178 #endif 183 184 count_io_event(source, "main");185 179 186 180 #ifdef FLOOD_SEND -
bitlbee.h
r9c62a7c r68b50b5f 107 107 #include "help.h" 108 108 #include "query.h" 109 #include "debug.h"110 109 #include "sock.h" 111 110 -
commands.c
r9c62a7c r68b50b5f 52 52 { "import_buddies", 1, cmd_import_buddies }, 53 53 { "qlist", 0, cmd_qlist }, 54 { "dump", 0, cmd_dump },55 54 { NULL } 56 55 }; … … 796 795 return( 0 ); 797 796 } 798 799 int 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
r9c62a7c r68b50b5f 1 Version 1.0: 2 - Removed some crashy debugging code. 3 4 Finished ... 5 1 6 Version 0.99: 2 7 - Fixed memory initialization bug in OSCAR module that caused crashes on -
protocols/proxy.c
r9c62a7c r68b50b5f 164 164 #endif 165 165 166 count_io_event(source, "proxy");167 168 166 if (condition & GAIM_READ_COND) 169 167 gaim_cond |= GAIM_INPUT_READ;
Note: See TracChangeset
for help on using the changeset viewer.