Changeset 919c27c
- Timestamp:
- 2006-05-14T08:41:05Z (19 years ago)
- Branches:
- master
- Children:
- 5330e3d
- Parents:
- df70eafa
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
bitlbee.c
rdf70eafa r919c27c 34 34 #include <errno.h> 35 35 36 static gboolean bitlbee_io_new_client( gpointer data, gint source, b_input_condition condition );36 static gboolean bitlbee_io_new_client( gpointer data, gint fd, b_input_condition condition ); 37 37 38 38 int bitlbee_daemon_init() … … 145 145 } 146 146 147 gboolean bitlbee_io_current_client_read( gpointer data, gint source, b_input_condition cond )147 gboolean bitlbee_io_current_client_read( gpointer data, gint fd, b_input_condition cond ) 148 148 { 149 149 irc_t *irc = data; … … 186 186 if( !g_slist_find( irc_connection_list, irc ) ) 187 187 { 188 log_message( LOGLVL_WARNING, "Abnormal termination of connection with fd %d.", irc->fd );188 log_message( LOGLVL_WARNING, "Abnormal termination of connection with fd %d.", fd ); 189 189 return FALSE; 190 190 } … … 200 200 } 201 201 202 gboolean bitlbee_io_current_client_write( gpointer data, gint source, b_input_condition cond )202 gboolean bitlbee_io_current_client_write( gpointer data, gint fd, b_input_condition cond ) 203 203 { 204 204 irc_t *irc = data; … … 243 243 } 244 244 245 static gboolean bitlbee_io_new_client( gpointer data, gint source, b_input_condition condition )245 static gboolean bitlbee_io_new_client( gpointer data, gint fd, b_input_condition condition ) 246 246 { 247 247 socklen_t size = sizeof( struct sockaddr_in );
Note: See TracChangeset
for help on using the changeset viewer.