Skip to content

Commit

Permalink
string -> enum
Browse files Browse the repository at this point in the history
  • Loading branch information
frostbyte73 committed Sep 26, 2024
1 parent ed10b36 commit 8fba8c7
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion protobufs/rpc/io.proto
Original file line number Diff line number Diff line change
Expand Up @@ -166,10 +166,15 @@ message EvaluateSIPDispatchRulesResponse {
// Keys are the names of X-* headers and values are the names of attributes they will be mapped to.
map<string, string> headers_to_attributes = 14;

repeated string enabled_features = 15;
repeated SIPFeature enabled_features = 15;
// NEXT ID: 16
}

enum SIPFeature {
NONE = 0;
KRISP_ENABLED = 1;
}

enum SIPDispatchResult {
LEGACY_ACCEPT_OR_PIN = 0; // check request_pin field
ACCEPT = 1;
Expand Down

0 comments on commit 8fba8c7

Please sign in to comment.