class Jabber::Bytestreams::SOCKS5BytestreamsServerStreamHost

A subclass of StreamHost which possesses a server attribute, to let SOCKS5BytestreamsInitiator know this is the local SOCKS5BytestreamsServer

Attributes

server[R]

Public Class Methods

new(server, jid=nil, host=nil, port=nil) click to toggle source
Calls superclass method
# File lib/xmpp4r/bytestreams/helper/socks5bytestreams/server.rb, line 131
def initialize(server, jid=nil, host=nil, port=nil)
  super(jid, host, port)
  @server = server
end