$NetBSD: patch-src_ssl_tls__client.h,v 1.1 2022/04/01 08:00:34 wiz Exp $ --- src/ssl/tls_client.h.orig 2016-05-25 20:42:17.404292837 +0000 +++ src/ssl/tls_client.h @@ -33,8 +33,8 @@ class BOTAN_DLL TLS_Client : public TLS_ void add_client_cert(const X509_Certificate& cert, Private_Key* cert_key); - TLS_Client(std::tr1::function input_fn, - std::tr1::function output_fn, + TLS_Client(function input_fn, + function output_fn, const TLS_Policy& policy, RandomNumberGenerator& rng); @@ -51,7 +51,7 @@ class BOTAN_DLL TLS_Client : public TLS_ void read_handshake(byte, const MemoryRegion&); void process_handshake_msg(Handshake_Type, const MemoryRegion&); - std::tr1::function input_fn; + function input_fn; const TLS_Policy& policy; RandomNumberGenerator& rng;