| 273 | } |
| 274 | |
| 275 | void netlink_connector::send_cbk(boost::system::error_code const& _error, std::size_t _bytes) { |
| 276 | // TODO: fix thread safety and then handle send errors, or |
| 277 | // replace asynchronous send by synchronous send |
| 278 | |
| 279 | (void)_bytes; |
| 280 | if (_error) { |
| 281 | VSOMEIP_ERROR << "Netlink send error : " << _error.message(); |
| 282 | if (handler_) { |
| 283 | handler_(true, "n/a", true); |
| 284 | handler_(false, "n/a", true); |
| 285 | } |
| 286 | } |
| 287 | } |
| 288 | |
| 289 | void netlink_connector::send_ifa_request(std::uint32_t _retry) { |
| 290 | typedef struct { |
no test coverage detected