| 118 | // -- properties --------------------------------------------------------------- |
| 119 | |
| 120 | size_t connection::buffered() const noexcept { |
| 121 | return static_cast<size_t>(SSL_pending(native(pimpl_))); |
| 122 | } |
| 123 | |
| 124 | stream_socket connection::fd() const noexcept { |
| 125 | if (pimpl_ != nullptr) { |