| 149 | |
| 150 | |
| 151 | int Client::Read(void* buffer, int sz) |
| 152 | { |
| 153 | Data data(min(sz, MAX_RECORD_SIZE), static_cast<opaque*>(buffer)); |
| 154 | return receiveData(*pimpl_->base_.ssl_, data); |
| 155 | } |
| 156 | |
| 157 | |
| 158 | void Client::SetCA(const char* name) |
nothing calls this directly
no test coverage detected