Changes in / [601e813:fc630f9]
- Files:
-
- 4 deleted
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
.bzrignore
r601e813 rfc630f9 2 2 config.h 3 3 bitlbee 4 Debug5 Debugx6 deps7 admin/Debug8 admin/admin.plg9 bitlbee.plg10 *.plg11 *.aps12 *.clw13 4 user-guide.txt 14 5 user-guide.html -
Makefile
r601e813 rfc630f9 10 10 11 11 # Program variables 12 objects = account.o bitlbee.o c rypting.o help.o ini.o ipc.o irc.o irc_commands.o nick.o query.o root_commands.o set.o storage.o storage_text.o url.o user.o util.o12 objects = account.o bitlbee.o conf.o crypting.o help.o ini.o ipc.o irc.o irc_commands.o log.o nick.o query.o root_commands.o set.o storage.o storage_text.o unix.o url.o user.o util.o 13 13 headers = account.h bitlbee.h commands.h conf.h config.h crypting.h help.h ini.h ipc.h irc.h log.h nick.h query.h set.h sock.h storage.h url.h user.h protocols/http_client.h protocols/md5.h protocols/nogaim.h protocols/proxy.h protocols/sha.h protocols/ssl_client.h 14 14 subdirs = protocols 15 16 ifeq ($(ARCH),Windows)17 objects += win32.o18 else19 objects += unix.o conf.o log.o20 endif21 15 22 16 # Expansion of variables -
bitlbee.c
r601e813 rfc630f9 141 141 return( 1 ); 142 142 143 log_link( LOGLVL_ERROR, LOGOUTPUT_IRC ); 144 log_link( LOGLVL_WARNING, LOGOUTPUT_IRC ); 145 143 146 return( 0 ); 144 147 } -
bitlbee.h
r601e813 rfc630f9 48 48 #include <stdio.h> 49 49 #include <ctype.h> 50 #include <errno.h>51 52 50 #ifndef _WIN32 53 51 #include <syslog.h> 52 #include <errno.h> 54 53 #endif 55 54 … … 76 75 #undef strncasecmp 77 76 #define strncasecmp __PLEASE_USE_G_STRNCASECMP_INSTEAD__ 77 78 #ifndef F_OK 79 #define F_OK 0 80 #endif 78 81 79 82 #define _( x ) x -
configure
r601e813 rfc630f9 64 64 --ipv6=0/1 IPv6 socket support $ipv6 65 65 66 --ssl=... SSL library to use (gnutls, nss, openssl, sspi,bogus, auto)66 --ssl=... SSL library to use (gnutls, nss, openssl, bogus, auto) 67 67 $ssl 68 68 EOF … … 231 231 elif [ "$ssl" = "nss" ]; then 232 232 detect_nss; 233 elif [ "$ssl" = "sspi" ]; then234 echo235 233 elif [ "$ssl" = "openssl" ]; then 236 234 echo -
protocols/nogaim.h
r601e813 rfc630f9 139 139 }; 140 140 141 struct ft142 {143 const char *filename;144 145 /* Total number of bytes in file */146 size_t total_bytes;147 148 /* Current number of bytes received */149 size_t cur_bytes;150 };151 152 struct ft_request153 {154 const char *filename;155 struct gaim_connection *gc;156 };157 158 typedef void (*ft_recv_handler) (struct ft *, void *data, size_t len);159 160 141 struct prpl { 161 142 int options; -
sock.h
r601e813 rfc630f9 21 21 #else 22 22 # include <winsock2.h> 23 # ifndef _MSC_VER 24 # include <ws2tcpip.h> 25 # endif 23 26 # if !defined(BITLBEE_CORE) && defined(_MSC_VER) 24 27 # pragma comment(lib,"bitlbee.lib") … … 27 30 # define read(a,b,c) recv(a,b,c,0) 28 31 # define write(a,b,c) send(a,b,c,0) 32 # define umask _umask 33 # define mode_t int 29 34 # define sock_make_nonblocking(fd) { int non_block = 1; ioctlsocket(fd, FIONBIO, &non_block); } 30 35 # define sock_make_blocking(fd) { int non_block = 0; ioctlsocket(fd, FIONBIO, &non_block); } -
storage_text.c
r601e813 rfc630f9 27 27 #include "bitlbee.h" 28 28 #include "crypting.h" 29 #ifdef _WIN3230 # define umask _umask31 # define mode_t int32 #endif33 34 #ifndef F_OK35 #define F_OK 036 #endif37 29 38 30 /* DO NOT USE THIS FUNCTION IN NEW CODE. This -
unix.c
r601e813 rfc630f9 64 64 if( global.conf->runmode == RUNMODE_INETD ) 65 65 { 66 log_link( LOGLVL_ERROR, LOGOUTPUT_IRC );67 log_link( LOGLVL_WARNING, LOGOUTPUT_IRC );68 69 66 i = bitlbee_inetd_init(); 70 67 log_message( LOGLVL_INFO, "Bitlbee %s starting in inetd mode.", BITLBEE_VERSION ); … … 73 70 else if( global.conf->runmode == RUNMODE_DAEMON ) 74 71 { 75 log_link( LOGLVL_ERROR, LOGOUTPUT_SYSLOG );76 log_link( LOGLVL_WARNING, LOGOUTPUT_SYSLOG );77 78 72 i = bitlbee_daemon_init(); 79 73 log_message( LOGLVL_INFO, "Bitlbee %s starting in daemon mode.", BITLBEE_VERSION );
Note: See TracChangeset
for help on using the changeset viewer.