Documentation
¶
Index ¶
Constants ¶
View Source
const ( // MTU constants EncryptedMDU = 383 // Maximum size of payload data in encrypted packet PlainMDU = 464 // Maximum size of payload data in unencrypted packet // Propagation Types PropagationBroadcast = 0 PropagationTransport = 1 // Destination Types DestinationSingle = 0 DestinationGroup = 1 DestinationPlain = 2 DestinationLink = 3 // Minimum packet sizes MinAnnounceSize = 169 // header(2) + desthash(16) + enckey(32) + signkey(32) + )
View Source
const ( // Packet Types PacketTypeData = 0x00 PacketTypeAnnounce = 0x01 PacketTypeLinkReq = 0x02 PacketTypeProof = 0x03 // Header Types HeaderType1 = 0x00 HeaderType2 = 0x01 // Context Types ContextNone = 0x00 ContextResource = 0x01 ContextResourceAdv = 0x02 ContextResourceReq = 0x03 ContextResourceHMU = 0x04 ContextResourcePRF = 0x05 ContextResourceICL = 0x06 ContextResourceRCL = 0x07 ContextCacheReq = 0x08 ContextRequest = 0x09 ContextResponse = 0x0A ContextPathResponse = 0x0B ContextCommand = 0x0C ContextCmdStatus = 0x0D ContextChannel = 0x0E ContextKeepalive = 0xFA ContextLinkIdentify = 0xFB ContextLinkClose = 0xFC ContextLinkProof = 0xFD ContextLRRTT = 0xFE ContextLRProof = 0xFF // Flag Values FlagSet = 0x01 FlagUnset = 0x00 // Header sizes HeaderMaxSize = 64 MTU = 500 AddressSize = 32 // Size of address/hash fields in bytes )
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Packet ¶
type Packet struct { HeaderType byte PacketType byte TransportType byte Context byte ContextFlag byte Hops byte DestinationType byte DestinationHash []byte TransportID []byte Data []byte Raw []byte Packed bool Sent bool CreateReceipt bool FromPacked bool SentAt time.Time PacketHash []byte RatchetID []byte RSSI *float64 SNR *float64 Q *float64 Addresses []byte }
func NewAnnouncePacket ¶
Click to show internal directories.
Click to hide internal directories.