Update src/version.h and Changelog for release.
This commit is contained in:
parent
70fbf99c7f
commit
c496bd7027
34
ChangeLog
34
ChangeLog
@ -1,3 +1,37 @@
|
|||||||
|
commit 70fbf99c7f6422a033220211307f6085a453edc3
|
||||||
|
Author: Arnaud Cornet <nohar@t1r.net>
|
||||||
|
Date: Wed Aug 19 22:02:56 2009 +0200
|
||||||
|
|
||||||
|
Refactor _write_socket
|
||||||
|
|
||||||
|
Call real_write_all in write_lines and write_line.
|
||||||
|
This should fix debian bug #542291.
|
||||||
|
BIG thanks to Zygo Blaxell.
|
||||||
|
|
||||||
|
commit 7546daa27691fb981230c0119cd0e25a461ca770
|
||||||
|
Author: Arnaud Cornet <nohar@t1r.net>
|
||||||
|
Date: Wed Aug 19 02:09:16 2009 +0200
|
||||||
|
|
||||||
|
[BUG] Handle badly lagging client conns decently.
|
||||||
|
|
||||||
|
commit fa0c70539b5e2a86d08b635ff87979758d57da09
|
||||||
|
Author: Arnaud Cornet <nohar@t1r.net>
|
||||||
|
Date: Sun Jul 26 11:38:20 2009 +0200
|
||||||
|
|
||||||
|
Allow parallel build (thks Whoopie and psychon).
|
||||||
|
|
||||||
|
commit 442e4973cd6f67ef069b0d674d527033b68a57c2
|
||||||
|
Author: Arnaud Cornet <nohar@t1r.net>
|
||||||
|
Date: Fri Jul 17 11:43:34 2009 +0200
|
||||||
|
|
||||||
|
Add -git to version string.
|
||||||
|
|
||||||
|
commit a7c38c17c07d80fb740cd47098f75c93d76f7c1c
|
||||||
|
Author: Arnaud Cornet <nohar@t1r.net>
|
||||||
|
Date: Fri Jul 17 11:43:29 2009 +0200
|
||||||
|
|
||||||
|
Update src/version.h and Changelog for release.
|
||||||
|
|
||||||
commit 213643d5bf74d1d71b8faec71505a4c1ec448452
|
commit 213643d5bf74d1d71b8faec71505a4c1ec448452
|
||||||
Author: Arnaud Cornet <nohar@t1r.net>
|
Author: Arnaud Cornet <nohar@t1r.net>
|
||||||
Date: Sun Jul 5 19:35:00 2009 +0200
|
Date: Sun Jul 5 19:35:00 2009 +0200
|
||||||
|
@ -27,6 +27,9 @@
|
|||||||
/* Define to the one symbol short name of this package. */
|
/* Define to the one symbol short name of this package. */
|
||||||
#undef PACKAGE_TARNAME
|
#undef PACKAGE_TARNAME
|
||||||
|
|
||||||
|
/* Define to the home page for this package. */
|
||||||
|
#undef PACKAGE_URL
|
||||||
|
|
||||||
/* Define to the version of this package. */
|
/* Define to the version of this package. */
|
||||||
#undef PACKAGE_VERSION
|
#undef PACKAGE_VERSION
|
||||||
|
|
||||||
|
@ -75,8 +75,6 @@ void connection_free(connection_t *cn)
|
|||||||
list_free(cn->incoming_lines);
|
list_free(cn->incoming_lines);
|
||||||
if (cn->incoming)
|
if (cn->incoming)
|
||||||
free(cn->incoming);
|
free(cn->incoming);
|
||||||
if (cn->ip_list)
|
|
||||||
list_free(cn->ip_list);
|
|
||||||
if (cn->connecting_data)
|
if (cn->connecting_data)
|
||||||
connecting_data_free(cn->connecting_data);
|
connecting_data_free(cn->connecting_data);
|
||||||
/* conn->user_data */
|
/* conn->user_data */
|
||||||
@ -1028,7 +1026,6 @@ static connection_t *connection_init(int anti_flood, int ssl, int timeout,
|
|||||||
conn->listening = listen;
|
conn->listening = listen;
|
||||||
conn->handle = -1;
|
conn->handle = -1;
|
||||||
conn->client = 0;
|
conn->client = 0;
|
||||||
conn->ip_list = NULL;
|
|
||||||
conn->connecting_data = NULL;
|
conn->connecting_data = NULL;
|
||||||
#ifdef HAVE_LIBSSL
|
#ifdef HAVE_LIBSSL
|
||||||
conn->ssl_ctx_h = NULL;
|
conn->ssl_ctx_h = NULL;
|
||||||
|
@ -79,7 +79,6 @@ typedef struct connection {
|
|||||||
char *partial;
|
char *partial;
|
||||||
list_t *incoming_lines;
|
list_t *incoming_lines;
|
||||||
void *user_data;
|
void *user_data;
|
||||||
list_t *ip_list;
|
|
||||||
struct connecting_data *connecting_data;
|
struct connecting_data *connecting_data;
|
||||||
#ifdef HAVE_LIBSSL
|
#ifdef HAVE_LIBSSL
|
||||||
SSL_CTX *ssl_ctx_h;
|
SSL_CTX *ssl_ctx_h;
|
||||||
|
@ -1 +1 @@
|
|||||||
#define BIP_VERSION "0.8.1-git"
|
#define BIP_VERSION "0.8.2"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user