aboutsummaryrefslogtreecommitdiffstats
path: root/bitlbee.c
Commit message (Expand)AuthorAgeLines
* Merge branch 'master' into patched-masterMarius Halden2018-04-19-0/+6
|\
| * bitlbee_daemon_init: friendlier error for EADDRINUSEdequis2018-03-19-0/+6
* | more sslMarius Halden2016-05-07-2/+19
|/
* Avoid propagating shutdown signal to all subprocessesdequis2015-10-30-0/+3
* Reindent everything to K&R style with tabsIndent2015-02-20-209/+184
* random_bytes: Use /dev/urandom only, don't bother trying /dev/randomdequis2015-01-26-4/+0
* Fix incorrect Free Software Foundation addressMatej Cepl2015-01-16-2/+2
* Use irc_write_all() to send the message in bitlbee_shutdowndequis2014-11-26-2/+4
* RIP native win32 support (use cygwin instead)dequis2014-09-27-6/+0
* Removed dead bit of code that was confusing me.Wilmer van der Gaast2012-06-10-10/+3
* Don't use AI_ADDRCONFIG at all for setting up a listening socket, since itWilmer van der Gaast2011-02-24-1/+5
* Fix compiler warnings. Also fixing irc_send_motd(), which so far got awayWilmer van der Gaast2010-09-05-1/+2
* Fixed shutdown sequence (could cause 100% CPU usage on SIGTERM).Wilmer van der Gaast2010-07-27-1/+1
* Merging main ui-fix.Wilmer van der Gaast2010-07-10-1/+2
|\
| * When addressing people in a chatroom, try to translate the nickname to theWilmer van der Gaast2010-07-05-1/+2
* | First part of the handshake, including sending a file descriptor to theWilmer van der Gaast2010-07-06-0/+2
|/
* Merging stuff from mainline (1.2.6).Wilmer van der Gaast2010-04-24-22/+57
|\
| * getaddrinfo(NULL) may return an IPv4 address first but we should definitelyWilmer van der Gaast2010-04-14-28/+48
| * Log to stderr+syslog until daemonized. Current behaviour is too confusingWilmer van der Gaast2010-04-14-2/+8
| * Run setsid() when daemonizing. (Closes #581)Wilmer van der Gaast2010-04-14-0/+1
| * Unset the IPV6_V6ONLY sockctl so listening on IPv6 will automatically alsoWilmer van der Gaast2010-04-07-1/+9
* | Merging head. Most changes are not so relevant because they're to IMWilmer van der Gaast2010-03-20-11/+7
|\|
| * Check the RESTART environment variable before closing fd's 0-2 since theWilmer van der Gaast2010-03-16-11/+7
* | Merging in head.Wilmer van der Gaast2010-03-14-5/+11
|\|
| * Close fd's 0,1,2 no matter what, not just if they're ttys. (Bug #476)Wilmer van der Gaast2010-03-14-5/+11
* | Make purple use BitlBee's event handling API. Since the APIs never reallyWilmer van der Gaast2009-10-11-3/+3
|/
* Merging changes from Jelmer: It's now possible to cross-compile a WindowsWilmer van der Gaast2008-06-30-4/+5
|\
| * Merge integration branch.Jelmer Vernooij2008-06-09-6/+10
| |\
| * \ Merge trunk.Jelmer Vernooij2008-04-02-61/+63
| |\ \
| * | | #ifdef out some Win32-incompatible code blocksJelmer Vernooij2006-05-25-1/+5
| * | | [merge] WilmerJelmer Vernooij2006-05-25-2/+2
| |\ \ \
| * \ \ \ [merge] WilmerJelmer Vernooij2006-03-01-58/+124
| |\ \ \ \
| * \ \ \ \ Merge WilmerJelmer Vernooij2006-01-10-169/+56
| |\ \ \ \ \
| * \ \ \ \ \ Merge WilmerJelmer Vernooij2005-12-15-247/+9
| |\ \ \ \ \ \
| * \ \ \ \ \ \ Merge WilmerJelmer Vernooij2005-11-19-1/+1
| |\ \ \ \ \ \ \
| | * \ \ \ \ \ \ Merge WilmerJelmer Vernooij2005-11-19-1/+1
| | |\ \ \ \ \ \ \
| * | | | | | | | | Merge new changes from pluginable and WilmerJelmer Vernooij2005-11-15-6/+0
| |\| | | | | | | |
| | * | | | | | | | Merge changes from WilmerJelmer Vernooij2005-11-15-6/+0
| | |\ \ \ \ \ \ \ \
| * | | | | | | | | | Import work on services-based Win32 portJelmer Vernooij2005-11-07-6/+0
| |/ / / / / / / / /
| * | | | | | | | | Migrate my pluginable branch to use Wilmers' branch as parentJelmer Vernooij2005-11-07-6/+33
* | | | | | | | | | Now using an environment variable instead of a flag to pass state info whenWilmer van der Gaast2008-06-29-1/+1
| |_|_|_|_|_|_|_|/ |/| | | | | | | |
* | | | | | | | | Added ClientInterface configuration option to make BitlBee bind() to aWilmer van der Gaast2008-04-06-2/+2
* | | | | | | | | Rearranged some event handling code.Wilmer van der Gaast2008-04-02-4/+8
| |_|_|_|_|_|_|/ |/| | | | | | |
* | | | | | | | Making AI_ADDRCONFIG optional, it doesn't exist on at least NetBSD andWilmer van der Gaast2008-02-10-1/+5
* | | | | | | | Fixing some Solaris compiler warnings (u_int->uint, adding some typecastsWilmer van der Gaast2008-01-17-1/+1
* | | | | | | | Fixed the epoll+ForkDaemon combination. The libevent event handlingWilmer van der Gaast2007-11-28-0/+2
* | | | | | | | Fixed NULL pointer dereference (in printf) when connected to a non-socketWilmer van der Gaast2007-11-19-10/+6
* | | | | | | | Merging from Jelmer.Wilmer van der Gaast2007-11-05-56/+37
|\ \ \ \ \ \ \ \
| * | | | | | | | Fix indentation.Jelmer Vernooij2007-10-18-10/+10
| * | | | | | | | Use standard functions for dealing with both IPv6 and IPv4. Jelmer Vernooij2007-10-18-58/+37
|/ / / / / / / /