blob: 394c35b4f61fa2a298638e8813e6a485a8005cce [file] [log] [blame]
Martin Brabham7fd25ca2019-12-03 20:13:05 -08001syntax = "proto3";
2
3package bluetooth.security;
4
5import "google/protobuf/empty.proto";
6import "facade/common.proto";
7
8service SecurityModuleFacade {
Martin Brabham560fe3d2019-12-03 21:21:06 -08009 rpc CreateBond(facade.BluetoothAddressWithType) returns (google.protobuf.Empty) {}
10 rpc CancelBond(facade.BluetoothAddressWithType) returns (google.protobuf.Empty) {}
11 rpc RemoveBond(facade.BluetoothAddressWithType) returns (google.protobuf.Empty) {}
Martin Brabham7fd25ca2019-12-03 20:13:05 -080012}