| 28 | } |
| 29 | |
| 30 | int Read(BIO* bio, char* data, int dlen) noexcept { |
| 31 | return ExceptionBoundary(bio, &TAbstractIO::ReadOld, -1, data, dlen); |
| 32 | } |
| 33 | |
| 34 | int Puts(BIO* bio, const char* buf) noexcept { |
| 35 | return ExceptionBoundary(bio, &TAbstractIO::Puts, -1, buf); |
no test coverage detected