| 190 | operator bool() const {return bio_;} |
| 191 | |
| 192 | bool write(const void* data, int dlen) |
| 193 | { |
| 194 | if (BIO_write(bio_, data, dlen) != dlen) { |
| 195 | OPENDDS_SSL_LOG_ERR("BIO_write failed"); |
| 196 | return false; |
| 197 | } |
| 198 | |
| 199 | return true; |
| 200 | } |
| 201 | |
| 202 | long get_mem_data(char **pp) |
| 203 | { |
no outgoing calls
no test coverage detected