Skip to content

Commit 179f0a4

Browse files
Adding an RPC to record call context using the callinfo
1 parent eab9e7d commit 179f0a4

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

protobufs/rpc/io.proto

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ service IOInfo {
4242
rpc GetSIPTrunkAuthentication(GetSIPTrunkAuthenticationRequest) returns (GetSIPTrunkAuthenticationResponse);
4343
rpc EvaluateSIPDispatchRules(EvaluateSIPDispatchRulesRequest) returns (EvaluateSIPDispatchRulesResponse);
4444
rpc UpdateSIPCallState(UpdateSIPCallStateRequest) returns (google.protobuf.Empty);
45+
rpc RecordCallContext(RecordCallContextRequest) returns (google.protobuf.Empty);
4546
}
4647

4748
message GetEgressRequest {
@@ -214,6 +215,12 @@ message UpdateSIPCallStateRequest {
214215
// NEXT ID: 3
215216
}
216217

218+
message RecordCallContextRequest {
219+
livekit.SIPCallInfo call_info = 1;
220+
221+
// NEXT ID: 2
222+
}
223+
217224
enum SIPDispatchResult {
218225
LEGACY_ACCEPT_OR_PIN = 0; // check request_pin field
219226
ACCEPT = 1;

0 commit comments

Comments
 (0)