Skip to content

Commit

Permalink
Add SIPCallDirection to SIPCallInfo
Browse files Browse the repository at this point in the history
  • Loading branch information
biglittlebigben committed Jan 8, 2025
1 parent 8714744 commit e29f14f
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion protobufs/livekit_sip.proto
Original file line number Diff line number Diff line change
Expand Up @@ -537,14 +537,15 @@ message SIPCallInfo {
SIPUri from_uri = 6;
SIPUri to_uri = 7;
repeated SIPFeature enabled_features = 14;
SIPCallDirection call_direction = 15;
SIPCallStatus call_status = 8;
int64 created_at = 9;
int64 started_at = 10;
int64 ended_at = 11;
DisconnectReason disconnect_reason = 12;
string error = 13;

// NEXT ID: 15
// NEXT ID: 1
}

message SIPUri {
Expand All @@ -567,3 +568,9 @@ enum SIPFeature {
NONE = 0;
KRISP_ENABLED = 1;
}

enum SIPCallDirection {
SCD_UNKNOWN = 0;
SCD_INBOUND = 1;
SCD_OUTBOUND = 2;
}

0 comments on commit e29f14f

Please sign in to comment.