| 292 | } |
| 293 | |
| 294 | void getHashData(Firebird::CheckStatusWrapper* status, void* h) override |
| 295 | { |
| 296 | Reference r(*port); |
| 297 | loadClientKey(); |
| 298 | |
| 299 | if (keyCallback) |
| 300 | { |
| 301 | keyCallback->getHashData(status, h); |
| 302 | return; |
| 303 | } |
| 304 | |
| 305 | if (!networkCallback.isStopped()) |
| 306 | { |
| 307 | ISC_STATUS err[] = {isc_arg_gds, isc_wish_list}; |
| 308 | status->setErrors2(FB_NELEM(err), err); |
| 309 | } |
| 310 | } |
| 311 | |
| 312 | private: |
| 313 | rem_port* port; |
nothing calls this directly
no test coverage detected