Commit ee98e7dc authored by Constantin Rack's avatar Constantin Rack Committed by GitHub

Merge pull request #2287 from bluca/hurd_ipv6_tos

Problem: build fails on GNU/Hurd as it does not support IPV6_TCLASS
parents c38fde00 efc0e942
......@@ -173,8 +173,8 @@ void zmq::set_ip_type_of_service (fd_t s_, int iptos)
errno_assert (rc == 0);
#endif
// Windows does not support IPV6_TCLASS
#ifndef ZMQ_HAVE_WINDOWS
// Windows and Hurd do not support IPV6_TCLASS
#if !defined (ZMQ_HAVE_WINDOWS) && defined (IPV6_TCLASS)
rc = setsockopt(
s_,
IPPROTO_IPV6,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment