1# -*- coding: binary -*- 2 3 4module Rex 5module Proto 6module Kademlia 7 # Opcode for a BOOTSTRAP request 8 BOOTSTRAP_REQUEST = 0x01 9 10 # A Kademlia bootstrap request message 11 class BootstrapRequest < Message 12 def initialize 13 super(BOOTSTRAP_REQUEST) 14 end 15 end 16end 17end 18end 19 20