TCPServer.new(port)创建服务器,可以满足当地托管或遥控机器的要求。
但GServer.new(port)创建的服务器只能满足当地东道方的服务要求。
In looking at GServer s source, it calls TCPServer.new(@host,@port). @host defaults to DEFAULT_HOST which is 127.0.0.1.
部队派遣国:
# TCPServer.new([hostname,] port) => tcpserver
# Creates a new server socket bound to _port_.
# If _hostname_ is given, the socket is bound to it.
我愿使用GServer,但不受某个东道方名称的约束。 这样做是否可行? 网上的每一例都只使用当地东道方。
It seems that if no host is specified to GServer, GServer should not specify a host to TCPServer.