This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/webrtc/base/posix.cc b/webrtc/base/posix.cc | |
index 0eb24ee..7e48273 100644 | |
--- a/webrtc/base/posix.cc | |
+++ b/webrtc/base/posix.cc | |
@@ -44,7 +44,7 @@ enum { | |
bool RunAsDaemon(const char *file, const char *const argv[]) { | |
// Fork intermediate child to daemonize. | |
- pid_t pid = fork(); | |
+ pid_t pid = -1; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- CDVViewController.m.orig 2015-04-23 19:49:35.000000000 +0200 | |
+++ CDVViewController.m 2015-04-23 19:47:51.000000000 +0200 | |
@@ -44,6 +44,7 @@ | |
@property (readwrite, assign) BOOL initialized; | |
@property (atomic, strong) NSURL* openURL; | |
+@property (atomic) BOOL pageLoaded; | |
@end | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<title>The STUN gun</title> | |
</head> | |
<body> | |
<form action=""> | |
Destination IP:<br> | |
<input type="text" id="destinationIp" value="127.0.0.1"><br> | |
Destination port:<br> | |
<input type="text" id="destinationPort" value="8888"><br><br> |