From: Andreas Steffen Date: Mon, 1 Apr 2013 20:31:44 +0000 (+0200) Subject: improve checking of sent and received http messages X-Git-Tag: 5.0.3~14 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c2c4125cde0936bb2b963a2acabe0fae3d6fce1f;p=thirdparty%2Fstrongswan.git improve checking of sent and received http messages --- diff --git a/src/libcharon/plugins/tnc_ifmap/tnc_ifmap_soap_msg.c b/src/libcharon/plugins/tnc_ifmap/tnc_ifmap_soap_msg.c index 8afd6ff096..eaa835134d 100644 --- a/src/libcharon/plugins/tnc_ifmap/tnc_ifmap_soap_msg.c +++ b/src/libcharon/plugins/tnc_ifmap/tnc_ifmap_soap_msg.c @@ -66,7 +66,7 @@ static bool http_post(private_tnc_ifmap_soap_msg_t *this, chunk_t out, { char *host, *path, *request, buf[2048]; chunk_t line, http, parameter; - int len, code, content_len = 0; + int len, written, code, content_len = 0; /* Duplicate host[/path] string since we are going to manipulate it */ len = strlen(this->uri) + 2; @@ -111,12 +111,16 @@ static bool http_post(private_tnc_ifmap_soap_msg_t *this, chunk_t out, http = chunk_create(request, len); DBG3(DBG_TLS, "%B", &http); - this->tls->write(this->tls, request, len); + written = this->tls->write(this->tls, request, len); free(request); + if (written != len) + { + return FALSE; + } /* Read HTTP response */ len = this->tls->read(this->tls, buf, sizeof(buf), TRUE); - if (len == -1) + if (len <= 0) { return FALSE; }