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
10 changes: 10 additions & 0 deletions v1/client/client.proto
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,15 @@ message StopServiceLocationRequest {
string pubkey = 2;
}

message ManagedInterfaceData {
string interface_name = 1;
InterfaceData data = 2;
}

message ListInterfacesResponse {
repeated ManagedInterfaceData interfaces = 1;
}

// service used by desktop clients to communicate with interface management
// daemon
service DesktopDaemonService {
Expand All @@ -84,4 +93,5 @@ service DesktopDaemonService {
rpc SaveServiceLocations(SaveServiceLocationsRequest) returns (google.protobuf.Empty);
rpc DeleteServiceLocations(DeleteServiceLocationsRequest) returns (google.protobuf.Empty);
rpc GetPostureData(google.protobuf.Empty) returns (defguard.enterprise.posture.v2.DevicePostureData);
rpc ListInterfaces(google.protobuf.Empty) returns (ListInterfacesResponse);
}
Loading