1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* ext/socket/option.c: Use "int" for IP_MULTICAST_LOOP and

IP_MULTICAST_TTL on Mac OS X.



git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@44667 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
akr 2014-01-20 19:32:03 +00:00
parent 5af92f6369
commit 779a630aee
3 changed files with 13 additions and 1 deletions

View file

@ -34,6 +34,13 @@ class TestSocketOption < Test::Unit::TestCase
assert_equal(128, sockopt.ipv4_multicast_loop)
end
def test_ipv4_multicast_loop_size
expected_size = Socket.open(:INET, :DGRAM) {|s|
s.getsockopt(:IP, :MULTICAST_LOOP).to_s.bytesize
}
assert_equal(expected_size, Socket::Option.ipv4_multicast_loop(0).to_s.bytesize)
end
def test_ipv4_multicast_ttl
sockopt = Socket::Option.ipv4_multicast_ttl(128)
assert_equal('#<Socket::Option: INET IP MULTICAST_TTL 128>', sockopt.inspect)