diff options
author | Wilmer van der Gaast <wilmer@gaast.net> | 2005-12-27 15:39:32 +0100 |
---|---|---|
committer | Wilmer van der Gaast <wilmer@gaast.net> | 2005-12-27 15:39:32 +0100 |
commit | e4d62711995840def3a2d51f62923d95cb368cee (patch) | |
tree | b53c3762820dc54aa997a05be8da33bdf2340b2f /protocols/http_client.c | |
parent | 238f828cb3524a2a09337d7502cc6db9556fc67a (diff) |
IPv6 socket improvements. Daemon mode can now also listen on IPv6 sockets.
Also, when reverse lookup fails, BitlBee now correctly falls back to an
ASCII-formatted IP instead of "localhost.".
Diffstat (limited to 'protocols/http_client.c')
-rw-r--r-- | protocols/http_client.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/http_client.c b/protocols/http_client.c index 51424e1c..9417e200 100644 --- a/protocols/http_client.c +++ b/protocols/http_client.c @@ -26,9 +26,9 @@ #include <string.h> #include <stdio.h> -#include "sock.h" #include "http_client.h" #include "url.h" +#include "sock.h" static void http_connected( gpointer data, int source, GaimInputCondition cond ); |