class Bundler::SocketAddress

套接字地址构建器。

给定一个套接字类型、一个主机和一个端口,

provides a method to build sockaddr string

属性

host[R]
port[R]
type[R]

公共类方法

new(type, host, port) 点击以切换源代码
# File bundler/mirror.rb, line 211
def initialize(type, host, port)
  @type = type
  @host = host
  @port = port
end

公共实例方法

to_socket_address() 点击以切换源代码
# File bundler/mirror.rb, line 217
def to_socket_address
  Socket.pack_sockaddr_in(@port, @host)
end