# File test/sockutils.rb, line 37
    def socketpair
      case (RUBY_PLATFORM)
      when /mswin32|mingw32/i
        return tcp_socketpair
      else
        return unix_socketpair
      end
    end