diff options
author | Christian Grothoff <christian@grothoff.org> | 2010-09-21 13:13:17 +0000 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2010-09-21 13:13:17 +0000 |
commit | e799762ddd6a453b725e479d65fafccc479e46c3 (patch) | |
tree | 59da1b8cfd0093a772b2e4723999440c1c9c919e | |
parent | ba62fb823f6801608250a97c719981ba823faae3 (diff) |
match MHD 0.9.2 API
-rw-r--r-- | src/core/gnunet-service-core.c | 2 | ||||
-rw-r--r-- | src/transport/plugin_transport_http.c | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/src/core/gnunet-service-core.c b/src/core/gnunet-service-core.c index 5c8d8dc72..d5807ef3c 100644 --- a/src/core/gnunet-service-core.c +++ b/src/core/gnunet-service-core.c @@ -44,7 +44,7 @@ #define DEBUG_HANDSHAKE GNUNET_NO -#define DEBUG_CORE_QUOTA GNUNET_NO +#define DEBUG_CORE_QUOTA GNUNET_YES /** * Receive and send buffer windows grow over time. For diff --git a/src/transport/plugin_transport_http.c b/src/transport/plugin_transport_http.c index 6af53332a..4389bbefc 100644 --- a/src/transport/plugin_transport_http.c +++ b/src/transport/plugin_transport_http.c @@ -819,7 +819,8 @@ mhd_accept_cb (void *cls, const struct sockaddr *addr, socklen_t addr_len) * @param max max number of bytes available in buffer * @return bytes written to buffer */ -int mhd_send_callback (void *cls, uint64_t pos, char *buf, int max) +static ssize_t +mhd_send_callback (void *cls, uint64_t pos, char *buf, size_t max) { struct Session * ps = cls; struct HTTP_PeerContext * pc; |