syntax = "proto3";

message HolePunch {
  enum Type {
    UNUSED = 0;
    CONNECT = 100;
    SYNC = 300;
  }

  optional Type type = 1;
  repeated bytes observed_addresses = 2;
}
