[ruby/ipaddr] Improve Ractor-compliance

https://github.com/ruby/ipaddr/commit/73461724e5
This commit is contained in:
rm155 2021-07-19 21:48:33 -04:00 committed by git
parent e76a550876
commit 70e6be2b05
1 changed files with 2 additions and 2 deletions

View File

@ -47,7 +47,7 @@ class IPAddr
# 128 bit mask for IPv6
IN6MASK = 0xffffffffffffffffffffffffffffffff
# Format string for IPv6
IN6FORMAT = (["%.4x"] * 8).join(':')
IN6FORMAT = (["%.4x"] * 8).join(':').freeze
# Regexp _internally_ used for parsing IPv4 address.
RE_IPV4ADDRLIKE = %r{
@ -736,7 +736,7 @@ end
unless Socket.const_defined? :AF_INET6
class Socket < BasicSocket
# IPv6 protocol family
AF_INET6 = Object.new
AF_INET6 = Object.new.freeze
end
class << IPSocket