Changes in / [6048744:6fb6410]


Ignore:
Files:
5 added
12 edited

Legend:

Unmodified
Added
Removed
  • .bzrignore

    r6048744 r6fb6410  
    22config.h
    33bitlbee
     4Debug
     5Debugx
     6deps
     7admin/Debug
     8admin/admin.plg
     9bitlbee.plg
     10*.plg
     11*.aps
     12*.clw
    413user-guide.txt
    514user-guide.html
  • Makefile

    r6048744 r6fb6410  
    1010
    1111# Program variables
    12 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
     12objects = account.o bitlbee.o crypting.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.o
    1313headers = 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
    1414subdirs = protocols
     15
     16ifeq ($(ARCH),Windows)
     17objects += win32.o
     18else
     19objects += unix.o conf.o log.o
     20endif
    1521
    1622# Expansion of variables
  • bitlbee.c

    r6048744 r6fb6410  
    123123                ipc_master_listen_socket();
    124124       
     125#ifndef _WIN32
    125126        if( ( fp = fopen( global.conf->pidfile, "w" ) ) )
    126127        {
     
    132133                log_message( LOGLVL_WARNING, "Warning: Couldn't write PID to `%s'", global.conf->pidfile );
    133134        }
     135#endif
    134136       
    135137        return( 0 );
     
    140142        if( !irc_new( 0 ) )
    141143                return( 1 );
    142        
    143         log_link( LOGLVL_ERROR, LOGOUTPUT_IRC );
    144         log_link( LOGLVL_WARNING, LOGOUTPUT_IRC );
    145144       
    146145        return( 0 );
     
    256255        struct sockaddr_in conn_info;
    257256        int new_socket = accept( global.listen_socket, (struct sockaddr *) &conn_info, &size );
    258         pid_t client_pid = 0;
    259257       
    260258        if( new_socket == -1 )
     
    264262        }
    265263       
     264#ifndef _WIN32
    266265        if( global.conf->runmode == RUNMODE_FORKDAEMON )
    267266        {
     267                pid_t client_pid = 0;
    268268                int fds[2];
    269269               
     
    316316        }
    317317        else
     318#endif
    318319        {
    319320                log_message( LOGLVL_INFO, "Creating new connection with fd %d.", new_socket );
  • bitlbee.h

    r6048744 r6fb6410  
    4848#include <stdio.h>
    4949#include <ctype.h>
     50#include <errno.h>
     51
    5052#ifndef _WIN32
    5153#include <syslog.h>
    52 #include <errno.h>
    5354#endif
    5455
     
    7576#undef strncasecmp
    7677#define strncasecmp     __PLEASE_USE_G_STRNCASECMP_INSTEAD__
    77 
    78 #ifndef F_OK
    79 #define F_OK 0
    80 #endif
    8178
    8279#define _( x ) x
  • configure

    r6048744 r6fb6410  
    6464--ipv6=0/1      IPv6 socket support                     $ipv6
    6565
    66 --ssl=...       SSL library to use (gnutls, nss, openssl, bogus, auto)
     66--ssl=...       SSL library to use (gnutls, nss, openssl, sspi, bogus, auto)
    6767                                                        $ssl
    6868EOF
     
    235235        elif [ "$ssl" = "nss" ]; then
    236236                detect_nss;
     237        elif [ "$ssl" = "sspi" ]; then
     238                echo
    237239        elif [ "$ssl" = "openssl" ]; then
    238240                echo
  • ipc.c

    r6048744 r6fb6410  
    417417}
    418418
     419#ifndef _WIN32
    419420char *ipc_master_save_state()
    420421{
     
    484485}
    485486
    486 #ifndef _WIN32
    487487int ipc_master_listen_socket()
    488488{
     
    528528}
    529529#else
     530int ipc_master_listen_socket()
     531{
    530532        /* FIXME: Open named pipe \\.\BITLBEE */
     533        return 0;
     534}
    531535#endif
    532536
  • irc_commands.c

    r6048744 r6fb6410  
    544544                ipc_to_master( cmd );
    545545       
     546#ifndef _WIN32
    546547        irc_reply( irc, 382, "%s :Rehashing", CONF_FILE );
     548#endif
    547549}
    548550
  • protocols/nogaim.h

    r6048744 r6fb6410  
    139139};
    140140
     141struct ft
     142{
     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
     152struct ft_request
     153{
     154        const char *filename;
     155        struct gaim_connection *gc;
     156};
     157
     158typedef void (*ft_recv_handler) (struct ft *, void *data, size_t len);
     159
    141160struct prpl {
    142161        int options;
  • protocols/oscar/AUTHORS

    r6048744 r6fb6410  
    2828E: awwaiid@auk.cx
    2929D: Figured out original password roasting
    30 
    31 
  • sock.h

    r6048744 r6fb6410  
    2121#else
    2222# include <winsock2.h>
    23 # ifndef _MSC_VER
    24 #  include <ws2tcpip.h>
    25 # endif
    2623# if !defined(BITLBEE_CORE) && defined(_MSC_VER)
    2724#   pragma comment(lib,"bitlbee.lib")
     
    3027# define read(a,b,c) recv(a,b,c,0)
    3128# define write(a,b,c) send(a,b,c,0)
    32 # define umask _umask
    33 # define mode_t int
    3429# define sock_make_nonblocking(fd) { int non_block = 1; ioctlsocket(fd, FIONBIO, &non_block); }
    3530# define sock_make_blocking(fd) { int non_block = 0; ioctlsocket(fd, FIONBIO, &non_block); }
  • storage_text.c

    r6048744 r6fb6410  
    2727#include "bitlbee.h"
    2828#include "crypting.h"
     29#ifdef _WIN32
     30# define umask _umask
     31# define mode_t int
     32#endif
     33
     34#ifndef F_OK
     35#define F_OK 0
     36#endif
    2937
    3038/* DO NOT USE THIS FUNCTION IN NEW CODE. This
  • unix.c

    r6048744 r6fb6410  
    6464        if( global.conf->runmode == RUNMODE_INETD )
    6565        {
     66                log_link( LOGLVL_ERROR, LOGOUTPUT_IRC );
     67                log_link( LOGLVL_WARNING, LOGOUTPUT_IRC );
     68       
    6669                i = bitlbee_inetd_init();
    6770                log_message( LOGLVL_INFO, "Bitlbee %s starting in inetd mode.", BITLBEE_VERSION );
     
    7073        else if( global.conf->runmode == RUNMODE_DAEMON )
    7174        {
     75                log_link( LOGLVL_ERROR, LOGOUTPUT_SYSLOG );
     76                log_link( LOGLVL_WARNING, LOGOUTPUT_SYSLOG );
     77
    7278                i = bitlbee_daemon_init();
    7379                log_message( LOGLVL_INFO, "Bitlbee %s starting in daemon mode.", BITLBEE_VERSION );
Note: See TracChangeset for help on using the changeset viewer.