class QuartzTorrent::UdpTrackerResponse

Superclass for UDP tracker responses

Attributes

action[RW]

Get the action as an integer. Should be one of the UdpTrackerMessage::Action* constants

connectionId[RW]

ConnectionId as an integer

transactionId[RW]

Get the transactionId as an integer

Public Class Methods

new() click to toggle source
# File lib/quartz_torrent/udptrackermsg.rb, line 88
def initialize
  @connectionId = nil
  @action = nil
  @transactionId = nil
end