aboutsummaryrefslogtreecommitdiff
path: root/resources
diff options
context:
space:
mode:
authorChristoph Settgast <csett86@web.de>2021-05-02 17:16:51 +0200
committerSaúl Ibarra Corretgé <s@saghul.net>2021-05-02 17:47:26 +0200
commit6a20f8e30d70989b9a7673485b48e4ef8e4340b7 (patch)
tree6ebe3d0f00addc538d50fdb879e87195750a9a70 /resources
parent5bf3ca238587e8c33975afd9deb7af37b2d20516 (diff)
fix(mas) WebRTC UDP connections
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 <csett86@web.de>
Diffstat (limited to 'resources')
-rw-r--r--resources/entitlements.mas.plist2
1 files changed, 2 insertions, 0 deletions
diff --git a/resources/entitlements.mas.plist b/resources/entitlements.mas.plist
index 2cb754e..24fdb30 100644
--- a/resources/entitlements.mas.plist
+++ b/resources/entitlements.mas.plist
@@ -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>