aboutsummaryrefslogtreecommitdiffstats
path: root/bitlbee.c
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2005-11-15 14:35:24 +0100
committerJelmer Vernooij <jelmer@samba.org>2005-11-15 14:35:24 +0100
commitf56c4917aa26670c03ef9cf4ecdfe2f7fad92aed (patch)
treea2fc70cee9c464823577e425fa6cdbc2d836a766 /bitlbee.c
parentabe53d3c48a6552e136ddc8bc554764daf255a05 (diff)
parentb135438c4c6aeb5a7cd3403f0cf37e741d589cd3 (diff)
Merge new changes from pluginable and Wilmer
Diffstat (limited to 'bitlbee.c')
-rw-r--r--bitlbee.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/bitlbee.c b/bitlbee.c
index 1054a42f..fa2c85fc 100644
--- a/bitlbee.c
+++ b/bitlbee.c
@@ -40,8 +40,6 @@ gboolean bitlbee_io_new_client( GIOChannel *source, GIOCondition condition, gpoi
int new_socket = accept( global.listen_socket, (struct sockaddr *) &conn_info,
&size );
- count_io_event(source, "main");
-
log_message( LOGLVL_INFO, "Creating new connection with fd %d.", new_socket );
irc_new( new_socket );
@@ -118,8 +116,6 @@ gboolean bitlbee_io_current_client_read( GIOChannel *source, GIOCondition condit
char line[513];
int st;
- count_io_event(source, "main");
-
if( condition & G_IO_ERR || condition & G_IO_HUP )
{
irc_free( irc );
@@ -175,8 +171,6 @@ gboolean bitlbee_io_current_client_write( GIOChannel *source, GIOCondition condi
time_t newtime;
#endif
- count_io_event(source, "main");
-
#ifdef FLOOD_SEND
newtime = time( NULL );
if( ( newtime - irc->oldtime ) > FLOOD_SEND_INTERVAL )