aboutsummaryrefslogtreecommitdiffstats
path: root/vespalib/src/vespa/vespalib/net/tls/tls_crypto_socket.h
blob: 01d20155bd1b5955f31ff8df4de8b0463c2c3432 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#pragma once

#include <vespa/vespalib/net/crypto_socket.h>

namespace vespalib {

struct TlsCryptoSocket : public CryptoSocket {
    ~TlsCryptoSocket() override;
    virtual void inject_read_data(const char *buf, size_t len) = 0;
};

} // namespace vespalib