Title: [152270] branches/safari-537-branch/Source/WebKit2

Diff

Modified: branches/safari-537-branch/Source/WebKit2/ChangeLog (152269 => 152270)


--- branches/safari-537-branch/Source/WebKit2/ChangeLog	2013-07-01 23:21:17 UTC (rev 152269)
+++ branches/safari-537-branch/Source/WebKit2/ChangeLog	2013-07-01 23:31:53 UTC (rev 152270)
@@ -1,5 +1,23 @@
 2013-07-01  Lucas Forschler  <[email protected]>
 
+        Merge r152077
+
+    2013-06-26  Simon Cooper  <[email protected]>
+
+            Sometimes the Flash Player plugin cannot make outgoing connections
+            https://bugs.webkit.org/show_bug.cgi?id=118110
+            <rdar://problem/14270933>
+
+            Reviewed by Alexey Proskuryakov.
+
+            Allow outgoing and incoming UDP data. Tidy up the QuickTime
+            profile as it gets the UDP ability from the common profile.
+
+            * Resources/PlugInSandboxProfiles/com.apple.QuickTime Plugin.plugin.sb:
+            * Resources/PlugInSandboxProfiles/com.apple.WebKit.plugin-common.sb:
+
+2013-07-01  Lucas Forschler  <[email protected]>
+
         Merge r152230
 
     2013-07-01  Sam Weinig  <[email protected]>

Modified: branches/safari-537-branch/Source/WebKit2/Resources/PlugInSandboxProfiles/com.apple.QuickTime Plugin.plugin.sb (152269 => 152270)


--- branches/safari-537-branch/Source/WebKit2/Resources/PlugInSandboxProfiles/com.apple.QuickTime Plugin.plugin.sb	2013-07-01 23:21:17 UTC (rev 152269)
+++ branches/safari-537-branch/Source/WebKit2/Resources/PlugInSandboxProfiles/com.apple.QuickTime Plugin.plugin.sb	2013-07-01 23:31:53 UTC (rev 152270)
@@ -5,6 +5,4 @@
     (home-library-subpath "/Caches/QuickTime")
     (home-library-preferences-literal "/QuickTime Preferences"))
 
-(allow network-inbound (local udp))
-(allow network-outbound (remote udp))
 (allow network-bind (local ip))

Modified: branches/safari-537-branch/Source/WebKit2/Resources/PlugInSandboxProfiles/com.apple.WebKit.plugin-common.sb (152269 => 152270)


--- branches/safari-537-branch/Source/WebKit2/Resources/PlugInSandboxProfiles/com.apple.WebKit.plugin-common.sb	2013-07-01 23:21:17 UTC (rev 152269)
+++ branches/safari-537-branch/Source/WebKit2/Resources/PlugInSandboxProfiles/com.apple.WebKit.plugin-common.sb	2013-07-01 23:31:53 UTC (rev 152270)
@@ -238,9 +238,12 @@
              (socket-domain AF_ROUTE))))
 
 (allow network-outbound
-    ;; Local mDNSResponder for DNS, arbitrary outbound TCP
+    ;; Local mDNSResponder for DNS, arbitrary outbound TCP and UDP
     (literal "/private/var/run/mDNSResponder")
-    (remote tcp))
+    (remote tcp)
+    (remote udp))
+(allow network-inbound
+    (local udp))
 
 
 ;; Open and Save panels
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to