mirror of
https://source.quilibrium.com/quilibrium/ceremonyclient.git
synced 2024-11-14 12:15:18 +00:00
15 lines
242 B
Protocol Buffer
15 lines
242 B
Protocol Buffer
|
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;
|
||
|
}
|