| 3684 | |
| 3685 | |
| 3686 | void rem_port::batch_blob_stream(P_BATCH_BLOB* batch, PACKET* sendL) |
| 3687 | { |
| 3688 | LocalStatus ls; |
| 3689 | CheckStatusWrapper status_vector(&ls); |
| 3690 | |
| 3691 | Rsr* statement; |
| 3692 | getHandle(statement, batch->p_batch_statement); |
| 3693 | statement->checkIface(); |
| 3694 | statement->checkBatch(); |
| 3695 | |
| 3696 | statement->rsr_batch->addBlobStream(&status_vector, |
| 3697 | batch->p_batch_blob_data.cstr_length, batch->p_batch_blob_data.cstr_address); |
| 3698 | |
| 3699 | this->send_response(sendL, 0, 0, &status_vector, true); |
| 3700 | } |
| 3701 | |
| 3702 | void rem_port::batch_bpb(P_BATCH_SETBPB* batch, PACKET* sendL) |
| 3703 | { |
no test coverage detected