Changeset 4c225f0


Ignore:
Timestamp:
2011-10-20T03:18:23Z (12 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
6a45181
Parents:
32bea82
Message:

Drop the on-disk IPC socket by default. Nothing uses it. If one really wants
it, it can be restored using the --ipcsocket= configure option.

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • configure

    r32bea82 r4c225f0  
    1919libevent='/usr/'
    2020pidfile='/var/run/bitlbee.pid'
    21 ipcsocket='/var/run/bitlbee.sock'
     21ipcsocket=''
    2222pcdir='$prefix/lib/pkgconfig'
    2323systemlibdirs="/lib /lib64 /usr/lib /usr/lib64 /usr/local/lib /usr/local/lib64"
     
    6767--pidfile=...                                           $pidfile
    6868--config=...                                            $config
    69 --ipcsocket=...                                         $ipcsocket
    7069
    7170--msn=0/1       Disable/enable MSN part                 $msn
  • ipc.c

    r32bea82 r4c225f0  
    909909        int serversock;
    910910
     911        if (!IPCSOCKET || !*IPCSOCKET)
     912                return 1;
     913
    911914        /* Clean up old socket files that were hanging around.. */
    912915        if (unlink(IPCSOCKET) == -1 && errno != ENOENT) {
Note: See TracChangeset for help on using the changeset viewer.