Home
last modified time | relevance | path

Searched refs:next_cmsg (Results 1 – 1 of 1) sorted by relevance

/external/grpc-grpc/src/core/lib/iomgr/
Dtcp_posix.cc632 auto next_cmsg = CMSG_NXTHDR(msg, cmsg); in process_timestamp() local
633 if (next_cmsg == nullptr) { in process_timestamp()
640 if (!(next_cmsg->cmsg_level == SOL_IP || next_cmsg->cmsg_level == SOL_IPV6) || in process_timestamp()
641 !(next_cmsg->cmsg_type == IP_RECVERR || in process_timestamp()
642 next_cmsg->cmsg_type == IPV6_RECVERR)) { in process_timestamp()
651 auto serr = reinterpret_cast<struct sock_extended_err*>(CMSG_DATA(next_cmsg)); in process_timestamp()
663 return next_cmsg; in process_timestamp()