| 119 | } |
| 120 | |
| 121 | inline void CHECK_LENGTH(rem_port* port, size_t length) |
| 122 | { |
| 123 | if (length > MAX_USHORT && port->port_protocol < PROTOCOL_VERSION13) |
| 124 | status_exception::raise(Arg::Gds(isc_imp_exc) << Arg::Gds(isc_blktoobig)); |
| 125 | } |
| 126 | |
| 127 | class UsePreallocatedBuffer |
| 128 | { |
no test coverage detected