aboutsummaryrefslogtreecommitdiffstats
path: root/src/libcharon/plugins/tnc_ifmap
diff options
context:
space:
mode:
authorMartin Willi <martin@revosec.ch>2014-03-25 10:19:41 +0100
committerMartin Willi <martin@revosec.ch>2014-04-01 14:28:55 +0200
commit5313880261fe271ac5b334ccacf92d6253efaf3d (patch)
tree89c5c3130a29b9a5d2b6d7c4b062ea97a62c3530 /src/libcharon/plugins/tnc_ifmap
parentddf5222096321580dd307adcb2d61cbfbb96f463 (diff)
downloadstrongswan-5313880261fe271ac5b334ccacf92d6253efaf3d.tar.bz2
strongswan-5313880261fe271ac5b334ccacf92d6253efaf3d.tar.xz
tls: Support a null encryption flag on TLS socket abstraction
Diffstat (limited to 'src/libcharon/plugins/tnc_ifmap')
-rw-r--r--src/libcharon/plugins/tnc_ifmap/tnc_ifmap_soap.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libcharon/plugins/tnc_ifmap/tnc_ifmap_soap.c b/src/libcharon/plugins/tnc_ifmap/tnc_ifmap_soap.c
index 5206ba4e7..af1b28adf 100644
--- a/src/libcharon/plugins/tnc_ifmap/tnc_ifmap_soap.c
+++ b/src/libcharon/plugins/tnc_ifmap/tnc_ifmap_soap.c
@@ -876,7 +876,8 @@ static bool soap_init(private_tnc_ifmap_soap_t *this)
}
/* open TLS socket */
- this->tls = tls_socket_create(FALSE, server_id, client_id, this->fd, NULL);
+ this->tls = tls_socket_create(FALSE, server_id, client_id, this->fd,
+ NULL, FALSE);
if (!this->tls)
{
DBG1(DBG_TNC, "creating TLS socket failed");
@@ -923,4 +924,3 @@ tnc_ifmap_soap_t *tnc_ifmap_soap_create()
return &this->public;
}
-