Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions proto/agynio/api/ziti_management/v1/ziti_management.proto
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@ enum ServiceType {
SERVICE_TYPE_LLM_PROXY = 4;
SERVICE_TYPE_TRACING = 5;
SERVICE_TYPE_RUNNERS = 6;
SERVICE_TYPE_EGRESS_GATEWAY = 7;
reserved 3;
reserved "SERVICE_TYPE_RUNNER";
}
Expand Down Expand Up @@ -123,6 +124,12 @@ message HostV1Config {
string protocol = 1;
string address = 2;
int32 port = 3;
bool forward_protocol = 4;
bool forward_address = 5;
bool forward_port = 6;
repeated string allowed_protocols = 7;
repeated string allowed_addresses = 8;
repeated PortRange allowed_port_ranges = 9;
}

// OpenZiti intercept.v1 config — tells dialing tunnelers which address to intercept.
Expand Down
Loading