aboutsummaryrefslogtreecommitdiffstats
path: root/src/ssl/tls_client.h
diff options
context:
space:
mode:
authorlloyd <[email protected]>2010-10-15 13:17:04 +0000
committerlloyd <[email protected]>2010-10-15 13:17:04 +0000
commitf7b299b7ecc684754da2959366d8895ab621d430 (patch)
treef9f7bd0ef94dbb8945e977edf252e8fcb52c7781 /src/ssl/tls_client.h
parent01e0b5f9e0a6572e8eea8f7e226eb96e11c0fa58 (diff)
Use size_t in ssl
Diffstat (limited to 'src/ssl/tls_client.h')
-rw-r--r--src/ssl/tls_client.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ssl/tls_client.h b/src/ssl/tls_client.h
index e59218892..1b9c361fe 100644
--- a/src/ssl/tls_client.h
+++ b/src/ssl/tls_client.h
@@ -25,8 +25,8 @@ namespace Botan {
class BOTAN_DLL TLS_Client : public TLS_Connection
{
public:
- u32bit read(byte buf[], u32bit buf_len);
- void write(const byte buf[], u32bit buf_len);
+ size_t read(byte buf[], size_t buf_len);
+ void write(const byte buf[], size_t buf_len);
std::vector<X509_Certificate> peer_cert_chain() const;