Files
go-i2p/lib/i2np/data.go

25 lines
356 B
Go
Raw Normal View History

2017-07-02 15:53:10 -07:00
package i2np
/*
I2P I2NP Data
https://geti2p.net/spec/i2np
Accurate for version 0.9.28
+----+----+----+----+----+-//-+
| length | data... |
+----+----+----+----+----+-//-+
length ::
4 bytes
length of the payload
data ::
$length bytes
actual payload of this message
*/
type Data struct {
Length int
Data []byte
}