Skip to content

Commit

Permalink
Fix port type for SIPUri.
Browse files Browse the repository at this point in the history
  • Loading branch information
dennwc committed Nov 12, 2024
1 parent 391b78f commit 4834df3
Show file tree
Hide file tree
Showing 4 changed files with 38 additions and 32 deletions.
6 changes: 6 additions & 0 deletions .changeset/violet-avocados-leave.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
"@livekit/protocol": patch
"github.com/livekit/protocol": patch
---

Fix port type for SIPUri.
8 changes: 4 additions & 4 deletions livekit/livekit_sip.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

54 changes: 27 additions & 27 deletions livekit/livekit_sip.twirp.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion protobufs/livekit_sip.proto
Original file line number Diff line number Diff line change
Expand Up @@ -457,7 +457,7 @@ message SIPUri {
string user = 1;
string host = 2;
string ip = 3;
string port = 4;
uint32 port = 4;
SIPTransport transport = 5;
}

Expand Down

0 comments on commit 4834df3

Please sign in to comment.