mirror of
				https://github.com/juanfont/headscale.git
				synced 2025-10-28 10:51:44 +01:00 
			
		
		
		
	This commit adds proto rpc definitions for the communication needed for the CLI interface. This will allow us to move the rest of the CLI interface over to gRPC and in the future allow remote access
		
			
				
	
	
		
			26 lines
		
	
	
		
			510 B
		
	
	
	
		
			Protocol Buffer
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			510 B
		
	
	
	
		
			Protocol Buffer
		
	
	
	
	
	
| syntax = "proto3";
 | |
| package headscale.v1;
 | |
| option  go_package = "github.com/juanfont/headscale/gen/go/v1";
 | |
| 
 | |
| message Routes {
 | |
|     repeated string advertised_routes = 1;
 | |
|     repeated string enabled_routes    = 2;
 | |
| }
 | |
| 
 | |
| message GetMachineRouteRequest {
 | |
|     uint64 machine_id = 1;
 | |
| }
 | |
| 
 | |
| message GetMachineRouteResponse {
 | |
|     Routes routes = 1;
 | |
| }
 | |
| 
 | |
| message EnableMachineRoutesRequest {
 | |
|     uint64          machine_id = 1;
 | |
|     repeated string routes     = 2;
 | |
| }
 | |
| 
 | |
| message EnableMachineRoutesResponse {
 | |
|     Routes routes = 1;
 | |
| }
 |