Skip to content

Commit 1a01a72

Browse files
WiP
1 parent bd5dad0 commit 1a01a72

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

src/main/kotlin/io/livekit/server/SipServiceClient.kt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,7 @@ class SipServiceClient(
100100
opt.metadata?.let { this.metadata = it }
101101
opt.authUsername?.let { this.authUsername = it }
102102
opt.authPassword?.let { this.authPassword = it }
103+
opt.destinationCountry?.let { this.destinationCountry = it }
103104
}
104105
build()
105106
}
@@ -160,6 +161,7 @@ class SipServiceClient(
160161
opt.authUsername?.let { this.authUsername = it }
161162
opt.authPassword?.let { this.authPassword = it }
162163
opt.numbers?.let { this.numbers = buildListUpdate(it) }
164+
opt.destinationCountry?.let { this.destinationCountry = it }
163165
}
164166
build()
165167
}
@@ -449,6 +451,7 @@ data class CreateSipOutboundTrunkOptions(
449451
var transport: LivekitSip.SIPTransport = LivekitSip.SIPTransport.SIP_TRANSPORT_AUTO,
450452
var authUsername: String? = null,
451453
var authPassword: String? = null,
454+
var destinationCountry: String? = null,
452455
)
453456

454457
data class UpdateSipInboundTrunkOptions(
@@ -469,6 +472,7 @@ data class UpdateSipOutboundTrunkOptions(
469472
var transport: LivekitSip.SIPTransport? = null,
470473
var authUsername: String? = null,
471474
var authPassword: String? = null,
475+
var destinationCountry: String? = null,
472476
)
473477

474478
/**

0 commit comments

Comments
 (0)