summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 6fc85b9)
raw | patch | inline | side by side (parent: 6fc85b9)
author | Paul Sadauskas <psadauskas@gmail.com> | |
Mon, 22 Jun 2009 21:06:25 +0000 (15:06 -0600) | ||
committer | Florian Forster <octo@leeloo.lan.home.verplant.org> | |
Fri, 21 Aug 2009 06:41:54 +0000 (08:41 +0200) |
src/http.c | patch | blob | history |
diff --git a/src/http.c b/src/http.c
index f38079e150a2bd0540f99975da143af0a975488c..09f9cfdd8bbe8678f33e3b1b4c4e7a67c256e18f 100644 (file)
--- a/src/http.c
+++ b/src/http.c
send_buffer_fill = 0;
} /* }}} http_init_buffer */
-static void http_send_buffer (char *buffer) /* {{{ */
+static int http_send_buffer (char *buffer) /* {{{ */
{
int status = 0;
curl_easy_setopt (curl, CURLOPT_POSTFIELDS, buffer);
ERROR ("http plugin: curl_easy_perform failed with staus %i: %s",
status, curl_errbuf);
}
+ return (status);
} /* }}} http_send_buffer */
-static void http_flush_buffer (void) /* {{{ */
+static int http_flush_buffer (void) /* {{{ */
{
+ int status = 0;
DEBUG ("http plugin: flush_buffer: send_buffer_fill = %i",
send_buffer_fill);
- http_send_buffer (send_buffer);
+ status = http_send_buffer (send_buffer);
http_init_buffer ();
+
+ return (status);
} /* }}} http_flush_buffer */
static int http_write (const data_set_t *ds, const value_list_t *vl, /* {{{ */
if ((sizeof (send_buffer) - send_buffer_fill) < 128)
{
- http_flush_buffer();
+ status = http_flush_buffer();
+ if (status != 0)
+ return status;
+
}
pthread_mutex_unlock (&send_lock);
static int http_shutdown (void) /* {{{ */
{
+ http_flush_buffer();
curl_easy_cleanup(curl);
return (0);
}