trz-gateway-common 0.2.10

Secure Proxy / Agents implementation in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
syntax = "proto3";

package terrazzo.remote.health;

import "google/protobuf/duration.proto";

service HealthService {
  rpc PingPong(Ping) returns (Pong);
}

message Ping {
  string connection_id = 1;
  google.protobuf.Duration delay = 2;
  string auth_code = 3;
}

message Pong {}