mirror of
https://github.com/go-i2p/go-i2p.git
synced 2025-07-04 13:32:52 -04:00
19 lines
410 B
Go
19 lines
410 B
Go
package i2np
|
|
|
|
/*
|
|
I2P I2NP VariableTunnelBuildReply
|
|
https://geti2p.net/spec/i2np
|
|
Accurate for version 0.9.28
|
|
|
|
+----+----+----+----+----+----+----+----+
|
|
| num| BuildResponseRecords...
|
|
+----+----+----+----+----+----+----+----+
|
|
|
|
Same format as VariableTunnelBuildMessage, with BuildResponseRecords.
|
|
*/
|
|
|
|
type VariableTunnelBuildReply struct {
|
|
Count int
|
|
BuildResponseRecords []BuildResponseRecord
|
|
}
|