ceremonyclient/go-libp2p/p2p/protocol/holepunch/pb/holepunch.proto

15 lines
242 B
Protocol Buffer
Raw Normal View History

2023-08-21 03:50:38 +00:00
syntax = "proto2";
package holepunch.pb;
// spec: https://github.com/libp2p/specs/blob/master/relay/DCUtR.md
message HolePunch {
enum Type {
CONNECT = 100;
SYNC = 300;
}
required Type type=1;
repeated bytes ObsAddrs = 2;
}