Refocus Tailnet flow on Tailscale
This commit is contained in:
parent
3ebb0a8e61
commit
64103abbea
16 changed files with 1856 additions and 342 deletions
|
|
@ -5,6 +5,7 @@ import "google/protobuf/timestamp.proto";
|
|||
|
||||
service Tunnel {
|
||||
rpc TunnelConfiguration (Empty) returns (stream TunnelConfigurationResponse);
|
||||
rpc TunnelPackets (stream TunnelPacket) returns (stream TunnelPacket);
|
||||
rpc TunnelStart (Empty) returns (Empty);
|
||||
rpc TunnelStop (Empty) returns (Empty);
|
||||
rpc TunnelStatus (Empty) returns (stream TunnelStatusResponse);
|
||||
|
|
@ -128,4 +129,12 @@ message TunnelStatusResponse {
|
|||
message TunnelConfigurationResponse {
|
||||
repeated string addresses = 1;
|
||||
int32 mtu = 2;
|
||||
repeated string routes = 3;
|
||||
repeated string dns_servers = 4;
|
||||
repeated string search_domains = 5;
|
||||
bool include_default_route = 6;
|
||||
}
|
||||
|
||||
message TunnelPacket {
|
||||
bytes payload = 1;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue