Skip to content

Commit

Permalink
fix(mas) WebRTC UDP connections
Browse files Browse the repository at this point in the history
UDP connections (for WebRTC) require both the server and the client entitlement,
as an app with only the client entitlement enabled can send, but not receive, data.

See https://developer.apple.com/documentation/bundleresources/entitlements/com_apple_security_network_client

Signed-off-by: Christoph Settgast <[email protected]>
  • Loading branch information
csett86 authored and saghul committed May 2, 2021
1 parent 5bf3ca2 commit 6a20f8e
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions resources/entitlements.mas.plist
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
<true/>
<key>com.apple.security.network.client</key>
<true/>
<key>com.apple.security.network.server</key>
<true/>
<key>com.apple.security.device.camera</key>
<true/>
<key>com.apple.security.device.audio-input</key>
Expand Down

0 comments on commit 6a20f8e

Please sign in to comment.