diff options
author | Andreas Steffen <andreas.steffen@strongswan.org> | 2011-05-31 15:46:30 +0200 |
---|---|---|
committer | Andreas Steffen <andreas.steffen@strongswan.org> | 2011-05-31 15:46:51 +0200 |
commit | 7e432eff6bf414465c4a1405bfddf856aa7ce753 (patch) | |
tree | 37637e028876b928a95fc6d7ee938a50bdeb0d5c /src/libtls/tls_application.h | |
parent | 4cefb9bd10a3fc7c74489b8ad90c2b6cdc834062 (diff) | |
download | strongswan-7e432eff6bf414465c4a1405bfddf856aa7ce753.tar.bz2 strongswan-7e432eff6bf414465c4a1405bfddf856aa7ce753.tar.xz |
renamed tls_reader|writer to bio_* and moved to libstrongswan
Diffstat (limited to 'src/libtls/tls_application.h')
-rw-r--r-- | src/libtls/tls_application.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/libtls/tls_application.h b/src/libtls/tls_application.h index b54a25e22..bd839fbb6 100644 --- a/src/libtls/tls_application.h +++ b/src/libtls/tls_application.h @@ -23,8 +23,8 @@ typedef struct tls_application_t tls_application_t; -#include "tls_reader.h" -#include "tls_writer.h" +#include <bio/bio_reader.h> +#include <bio/bio_writer.h> /** * TLS application data interface. @@ -40,7 +40,7 @@ struct tls_application_t { * - FAILED if application data processing failed * - NEED_MORE if another invocation of process/build needed */ - status_t (*process)(tls_application_t *this, tls_reader_t *reader); + status_t (*process)(tls_application_t *this, bio_reader_t *reader); /** * Build TLS application data to send out. @@ -52,7 +52,7 @@ struct tls_application_t { * - NEED_MORE if more data ready for delivery * - INVALID_STATE if more input to process() required */ - status_t (*build)(tls_application_t *this, tls_writer_t *writer); + status_t (*build)(tls_application_t *this, bio_writer_t *writer); /** * Destroy a tls_application_t. |