class QuartzTorrent::Uninterested

Uninterested message. Sent to tell peer we are not interested in any piece they have.

Public Class Methods

new() click to toggle source
Calls superclass method QuartzTorrent::PeerWireMessage::new
# File lib/quartz_torrent/peermsg.rb, line 183
def initialize
  super(MessageUninterested)
end

Public Instance Methods

payloadLength() click to toggle source
# File lib/quartz_torrent/peermsg.rb, line 186
def payloadLength
  0
end
unserialize(payload) click to toggle source
# File lib/quartz_torrent/peermsg.rb, line 189
def unserialize(payload)
end