| 151 | |
| 152 | template<typename Protocol> |
| 153 | bool client_endpoint_impl<Protocol>::send_error(const std::shared_ptr<endpoint_definition> _target, const byte_t* _data, uint32_t _size) { |
| 154 | |
| 155 | (void)_target; |
| 156 | (void)_data; |
| 157 | (void)_size; |
| 158 | VSOMEIP_ERROR << "Clients endpoints must not be used to send errors to explicitly specified targets"; |
| 159 | return false; |
| 160 | } |
| 161 | |
| 162 | template<typename Protocol> |
| 163 | bool client_endpoint_impl<Protocol>::send(const uint8_t* _data, uint32_t _size) { |