Changeset 4358b10
- Timestamp:
- 2008-05-04T13:32:15Z (17 years ago)
- Branches:
- master
- Children:
- 29c1456
- Parents:
- 0cab388
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
dcc.c
r0cab388 r4358b10 29 29 #include <netinet/tcp.h> 30 30 #include <regex.h> 31 32 /* Some ifdefs for ulibc (Thanks to Whoopie) */ 33 #ifndef HOST_NAME_MAX 34 #include <sys/param.h> 35 #ifdef MAXHOSTNAMELEN 36 #define HOST_NAME_MAX MAXHOSTNAMELEN 37 #else 38 #define HOST_NAME_MAX 255 39 #endif 40 #endif 41 42 #ifndef AI_NUMERICSERV 43 #define AI_NUMERICSERV 0x0400 /* Don't use name resolution. */ 44 #endif 31 45 32 46 /* -
irc.c
r0cab388 r4358b10 29 29 #include "ipc.h" 30 30 #include "dcc.h" 31 32 #include <regex.h>33 #include <netinet/in.h>34 31 35 32 static gboolean irc_userping( gpointer _irc, int fd, b_input_condition cond ); -
protocols/jabber/iq.c
r0cab388 r4358b10 612 612 { 613 613 /* Who cares about the unknown... */ 614 imcb_log( ic, "Couldn t find the man: %s", bare_jid);614 imcb_log( ic, "Couldn't find buddy: %s", bare_jid); 615 615 return 0; 616 616 } … … 626 626 imcb_log( ic, "WARNING: Couldn't generate feature query" ); 627 627 xt_free_node( node ); 628 return 0; 628 629 } 629 630 … … 648 649 { 649 650 /* Who cares about the unknown... */ 650 imcb_log( ic, "Couldn t find the man: %s", xt_find_attr( node, "from"));651 imcb_log( ic, "Couldn't find buddy: %s", xt_find_attr( node, "from")); 651 652 return 0; 652 653 } -
protocols/jabber/s5bytestream.c
r0cab388 r4358b10 26 26 #include <poll.h> 27 27 28 /* Some ifdefs for ulibc (Thanks to Whoopie) */ 29 #ifndef HOST_NAME_MAX 30 #include <sys/param.h> 31 #ifdef MAXHOSTNAMELEN 32 #define HOST_NAME_MAX MAXHOSTNAMELEN 33 #else 34 #define HOST_NAME_MAX 255 35 #endif 36 #endif 37 28 38 struct bs_transfer { 29 39 … … 1048 1058 struct socks5_message socks5_connect; 1049 1059 int msgsize = sizeof( struct socks5_message ); 1050 1051 if( !jabber_bs_peek( bt, &socks5_connect, msgsize ) ) 1060 int ret; 1061 1062 if( !( ret = jabber_bs_peek( bt, &socks5_connect, msgsize ) ) ) 1052 1063 return FALSE; 1064 1065 if( ret < msgsize ) 1066 return TRUE; 1053 1067 1054 1068 if( !( socks5_connect.ver == 5) ||
Note: See TracChangeset
for help on using the changeset viewer.