module BEncoding

Defined in:

BEncoding.cr
BEncoding/decode.cr
BEncoding/version.cr

Constant Summary

DECODE_BYTES = {:dictionary_start => 'd'.bytes[0], :dictionary_end => 'e'.bytes[0], :list_start => 'l'.bytes[0], :list_end => 'e'.bytes[0], :number_start => 'i'.bytes[0], :number_end => 'e'.bytes[0], :bytea_divider => ':'.bytes[0]}
VERSION = "0.1.0"

Class Method Summary

Class Method Detail

def self.decode_file(path : String) #

[View source]