ceremonyclient/go-libp2p/p2p/protocol/circuitv2/pb/voucher.proto
2023-08-20 23:07:43 -05:00

11 lines
288 B
Protocol Buffer

syntax = "proto3";
package circuit.pb;
message ReservationVoucher {
// These fields are marked optional for backwards compatibility with proto2.
// Users should make sure to always set these.
optional bytes relay = 1;
optional bytes peer = 2;
optional uint64 expiration = 3;
}