Skip to content

Commit 256d969

Browse files
Adding a new filed in the SipCall message to store the SIP call id (#1119)
* Adding a new filed in the SipCall message to store the SIP protocol generated call id. This can be used in the sip code base whenever the sip call id needs to be fetched at a later stage * generated protobuf * adding changeset * Ensuring that the generated protobufs from replay folder are also added to the CI commit * generated protobuf --------- Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
1 parent e3c136e commit 256d969

File tree

7 files changed

+233
-367
lines changed

7 files changed

+233
-367
lines changed

.changeset/tasty-geese-cross.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"github.com/livekit/protocol": minor
3+
---
4+
5+
Adding SIP Protocol generated call id to SipCall

.github/workflows/generate.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,6 @@ jobs:
6868
- name: Add changes
6969
uses: EndBug/add-and-commit@v9
7070
with:
71-
add: '["livekit", "rpc", "infra", "packages/javascript/src/gen"]'
71+
add: '["livekit", "replay", "rpc", "infra", "packages/javascript/src/gen"]'
7272
default_author: github_actions
7373
message: generated protobuf

protobufs/rpc/io.proto

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -229,4 +229,5 @@ message SIPCall {
229229
livekit.SIPUri from = 4; // From header
230230
livekit.SIPUri to = 5; // To header
231231
repeated livekit.SIPUri via = 6; // Via headers
232+
string sip_call_id = 7; // SIP protocol generated call ID
232233
}

replay/cloud_replay.pb.go

Lines changed: 97 additions & 249 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

rpc/io.pb.go

Lines changed: 16 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)