MCPcopy Create free account
hub / github.com/COVESA/vsomeip / send_cbk

Method send_cbk

implementation/endpoints/src/netlink_connector.cpp:275–287  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

273}
274
275void 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
289void netlink_connector::send_ifa_request(std::uint32_t _retry) {
290 typedef struct {

Callers 3

send_ifa_requestMethod · 0.95
send_ifi_requestMethod · 0.95
send_rt_requestMethod · 0.95

Calls 1

messageMethod · 0.80

Tested by

no test coverage detected