Changes in irc.c [2ff2076:3e1e11af]
Legend:
- Unmodified
- Added
- Removed
-
irc.c
r2ff2076 r3e1e11af 28 28 #include "crypting.h" 29 29 #include "ipc.h" 30 #include "dcc.h"31 32 #include <regex.h>33 #include <netinet/in.h>34 30 35 31 static gboolean irc_userping( gpointer _irc, int fd, b_input_condition cond ); … … 985 981 return( 1 ); 986 982 } 987 else if( g_strncasecmp( s + 1, "DCC", 3 ) == 0 )988 {989 if( u && u->ic && u->ic->acc->prpl->transfer_request )990 {991 file_transfer_t *ft = dcc_request( u->ic, s + 5 );992 if ( ft )993 u->ic->acc->prpl->transfer_request( u->ic, ft, u->handle );994 }995 return( 1 );996 }997 983 else 998 984 { 999 irc_usermsg( irc, " Supported CTCPs are ACTION, VERSION, PING, TYPING, DCC" );985 irc_usermsg( irc, "Non-ACTION CTCP's aren't supported" ); 1000 986 return( 0 ); 1001 987 }
Note: See TracChangeset
for help on using the changeset viewer.