From 865deb2a84f3732e6cc33670a969ac3e176bfbd7 Mon Sep 17 00:00:00 2001 From: Denys Smirnov Date: Fri, 4 Oct 2024 17:15:41 +0300 Subject: [PATCH] Add missing SIP status attribute. --- livekit/attrs.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/livekit/attrs.go b/livekit/attrs.go index 2102d8b8..2424f27c 100644 --- a/livekit/attrs.go +++ b/livekit/attrs.go @@ -16,4 +16,8 @@ const ( // AttrSIPPhoneNumber attribute contains number external to LiveKit SIP (caller for inbound and called number for outbound). // This attribute will be omitted if HidePhoneNumber is set. AttrSIPPhoneNumber = AttrSIPPrefix + "phoneNumber" + // AttrSIPCallStatus attribute contains current call status for a SIP call associated with the participant. + // + // SIP participant is ready when it reaches "active" status. + AttrSIPCallStatus = AttrSIPPrefix + "callStatus" )