| 2796 | } |
| 2797 | |
| 2798 | SendControlStatus |
| 2799 | DataWriterImpl::send_control(const DataSampleHeader& header, |
| 2800 | Message_Block_Ptr msg) |
| 2801 | { |
| 2802 | controlTracker.message_sent(); |
| 2803 | |
| 2804 | SendControlStatus status = TransportClient::send_control(header, OPENDDS_MOVE_NS::move(msg)); |
| 2805 | |
| 2806 | if (status != SEND_CONTROL_OK) { |
| 2807 | controlTracker.message_dropped(); |
| 2808 | } |
| 2809 | |
| 2810 | return status; |
| 2811 | } |
| 2812 | |
| 2813 | WeakRcHandle<ICE::Endpoint> |
| 2814 | DataWriterImpl::get_ice_endpoint() |
no test coverage detected