Skip to content

Commit

Permalink
bypass SSL verification in webrtc (#1071)
Browse files Browse the repository at this point in the history
* bypass SSL verification in webrtc

* Add changelog
  • Loading branch information
yostyle authored Jun 18, 2024
1 parent c7f7504 commit fbf2b9e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions changelog.d/1071.wip
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Fix webrtc SSL connection
Original file line number Diff line number Diff line change
Expand Up @@ -295,6 +295,8 @@ class WebRtcCall(
.builder(uri)
.setUsername(server.username)
.setPassword(server.password)
// TCHAP bypass SSL verification. See https://groups.google.com/g/discuss-webrtc/c/4MmARU0XYqc/m/QppVNJiEAAAJ
.setTlsCertPolicy(PeerConnection.TlsCertPolicy.TLS_CERT_POLICY_INSECURE_NO_CHECK)
.createIceServer()
)
}
Expand Down

0 comments on commit fbf2b9e

Please sign in to comment.