aboutsummaryrefslogtreecommitdiffstats
path: root/src/libtls/tls_socket.c
diff options
context:
space:
mode:
authorAndreas Steffen <andreas.steffen@strongswan.org>2011-05-31 15:46:30 +0200
committerAndreas Steffen <andreas.steffen@strongswan.org>2011-05-31 15:46:51 +0200
commit7e432eff6bf414465c4a1405bfddf856aa7ce753 (patch)
tree37637e028876b928a95fc6d7ee938a50bdeb0d5c /src/libtls/tls_socket.c
parent4cefb9bd10a3fc7c74489b8ad90c2b6cdc834062 (diff)
downloadstrongswan-7e432eff6bf414465c4a1405bfddf856aa7ce753.tar.bz2
strongswan-7e432eff6bf414465c4a1405bfddf856aa7ce753.tar.xz
renamed tls_reader|writer to bio_* and moved to libstrongswan
Diffstat (limited to 'src/libtls/tls_socket.c')
-rw-r--r--src/libtls/tls_socket.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libtls/tls_socket.c b/src/libtls/tls_socket.c
index e0c440a4c..691a8e79f 100644
--- a/src/libtls/tls_socket.c
+++ b/src/libtls/tls_socket.c
@@ -67,7 +67,7 @@ struct private_tls_socket_t {
};
METHOD(tls_application_t, process, status_t,
- private_tls_application_t *this, tls_reader_t *reader)
+ private_tls_application_t *this, bio_reader_t *reader)
{
chunk_t data;
@@ -80,7 +80,7 @@ METHOD(tls_application_t, process, status_t,
}
METHOD(tls_application_t, build, status_t,
- private_tls_application_t *this, tls_writer_t *writer)
+ private_tls_application_t *this, bio_writer_t *writer)
{
if (this->out.len)
{