| 24 | } |
| 25 | |
| 26 | int Write(BIO* bio, const char* data, int dlen) noexcept { |
| 27 | return ExceptionBoundary(bio, &TAbstractIO::WriteOld, -1, data, dlen); |
| 28 | } |
| 29 | |
| 30 | int Read(BIO* bio, char* data, int dlen) noexcept { |
| 31 | return ExceptionBoundary(bio, &TAbstractIO::ReadOld, -1, data, dlen); |
no test coverage detected