public function Wait($timeout = false, $readfps = array(), $writefps = array(), $exceptfps = NULL)
 {
     $readfps["ws_s"] = $this->fp;
     if ($timeout === false || $timeout > $this->defaultkeepalive) {
         $timeout = $this->defaultkeepalive;
     }
     foreach ($this->clients as $id => &$client) {
         if ($client["writedata"] === "") {
             $readfps["ws_c_" . $id] = $client["fp"];
         }
         if ($client["writedata"] !== "" || $client["websocket"] !== false && $client["websocket"]->NeedsWrite()) {
             $writefps["ws_c_" . $id] = $client["fp"];
         }
         if ($client["websocket"] !== false) {
             $timeout2 = $client["websocket"]->GetKeepAliveTimeout();
             if ($timeout > $timeout2) {
                 $timeout = $timeout2;
             }
         }
     }
     $result = array("success" => true, "clients" => array(), "removed" => array(), "readfps" => array(), "writefps" => array(), "exceptfps" => array());
     $result2 = @stream_select($readfps, $writefps, $exceptfps, $timeout);
     if ($result2 === false) {
         return array("success" => false, "error" => HTTP::HTTPTranslate("Wait() failed due to stream_select() failure.  Most likely cause:  Connection failure."), "errorcode" => "stream_select_failed");
     }
     // Handle new connections.
     if (isset($readfps["ws_s"])) {
         while (($fp = @stream_socket_accept($this->fp, 0)) !== false) {
             // Enable non-blocking mode.
             stream_set_blocking($fp, 0);
             $this->clients[$this->nextclientid] = array("id" => $this->nextclientid, "readdata" => "", "writedata" => "", "request" => false, "path" => "", "url" => "", "headers" => array(), "lastheader" => "", "websocket" => false, "fp" => $fp);
             $this->nextclientid++;
         }
         unset($readfps["s"]);
     }
     // Handle clients in the read queue.
     foreach ($readfps as $cid => $fp) {
         if (!is_string($cid) || strlen($cid) < 6 || substr($cid, 0, 5) !== "ws_c_") {
             continue;
         }
         $id = (int) substr($cid, 5);
         if (!isset($this->clients[$id])) {
             continue;
         }
         if ($this->clients[$id]["websocket"] !== false) {
             $this->ProcessClientQueuesAndTimeoutState($result, $id, true, isset($writefps[$cid]));
             // Remove active WebSocket clients from the write queue.
             unset($writefps[$cid]);
         } else {
             $result2 = @fread($fp, 8192);
             if ($result2 === false || feof($fp)) {
                 @fclose($fp);
                 unset($this->clients[$id]);
             } else {
                 $this->clients[$id]["readdata"] .= $result2;
                 if (strlen($this->clients[$id]["readdata"]) > 100000) {
                     // Bad header size.  Just kill the connection.
                     @fclose($fp);
                     unset($this->clients[$id]);
                 } else {
                     while (($pos = strpos($this->clients[$id]["readdata"], "\n")) !== false) {
                         // Retrieve the next line of input.
                         $line = rtrim(substr($this->clients[$id]["readdata"], 0, $pos));
                         $this->clients[$id]["readdata"] = (string) substr($this->clients[$id]["readdata"], $pos + 1);
                         if ($this->clients[$id]["request"] === false) {
                             $this->clients[$id]["request"] = trim($line);
                         } else {
                             if ($line !== "") {
                                 // Process the header.
                                 if ($this->clients[$id]["lastheader"] != "" && (substr($line, 0, 1) == " " || substr($line, 0, 1) == "\t")) {
                                     $this->clients[$id]["headers"][$this->clients[$id]["lastheader"]] .= $header;
                                 } else {
                                     $pos = strpos($line, ":");
                                     if ($pos === false) {
                                         $pos = strlen($line);
                                     }
                                     $this->clients[$id]["lastheader"] = HTTP::HeaderNameCleanup(substr($line, 0, $pos));
                                     $this->clients[$id]["headers"][$this->clients[$id]["lastheader"]] = ltrim(substr($line, $pos + 1));
                                 }
                             } else {
                                 // Headers have all been received.  Process the client request.
                                 $request = $this->clients[$id]["request"];
                                 $pos = strpos($request, " ");
                                 if ($pos === false) {
                                     $pos = strlen($request);
                                 }
                                 $method = (string) substr($request, 0, $pos);
                                 $request = trim(substr($request, $pos));
                                 $pos = strrpos($request, " ");
                                 if ($pos === false) {
                                     $pos = strlen($request);
                                 }
                                 $path = (string) substr($request, 0, $pos);
                                 if ($path === "") {
                                     $path = "/";
                                 }
                                 $this->clients[$id]["path"] = $path;
                                 $this->clients[$id]["url"] = "ws://" . $client["headers"]["Host"] . $path;
                                 // Let a derived class handle the new connection (e.g. processing Origin and Host).
                                 // Since the 'websocketclass' is instantiated AFTER this function, it is possible to switch classes on the fly.
                                 $this->clients[$id]["writedata"] .= $this->ProcessNewConnection($method, $path, $this->clients[$id]);
                                 // If an error occurs, the connection will still terminate.
                                 $this->clients[$id]["websocket"] = new $this->websocketclass();
                                 $this->clients[$id]["websocket"]->SetCloseMode($this->defaultclosemode);
                                 $this->clients[$id]["websocket"]->SetKeepAliveTimeout($this->defaultkeepalive);
                                 // If nothing was output, accept the connection.
                                 if ($this->clients[$id]["writedata"] === "") {
                                     $this->clients[$id]["writedata"] .= "HTTP/1.1 101 Switching Protocols\r\nUpgrade: websocket\r\nConnection: Upgrade\r\n";
                                     $this->clients[$id]["writedata"] .= "Sec-WebSocket-Accept: " . base64_encode(sha1($this->clients[$id]["headers"]["Sec-Websocket-Key"] . WebSocket::KEY_GUID, true)) . "\r\n";
                                     $this->clients[$id]["writedata"] .= $this->ProcessAcceptedConnection($method, $path, $this->clients[$id]);
                                     $this->clients[$id]["writedata"] .= "\r\n";
                                     // Finish class initialization.
                                     $this->clients[$id]["websocket"]->SetServerMode();
                                     $this->clients[$id]["websocket"]->SetMaxReadFrameSize($this->defaultmaxreadframesize);
                                     $this->clients[$id]["websocket"]->SetMaxReadMessageSize($this->defaultmaxreadmessagesize);
                                     // Set the socket in the WebSocket class.
                                     $this->clients[$id]["websocket"]->Connect("", "", "", array("fp" => $fp));
                                 }
                                 break;
                             }
                         }
                     }
                 }
             }
         }
         unset($readfps[$cid]);
     }
     // Handle remaining clients in the write queue.
     foreach ($writefps as $cid => $fp) {
         if (!is_string($cid) || strlen($cid) < 6 || substr($cid, 0, 5) !== "ws_c_") {
             continue;
         }
         $id = (int) substr($cid, 5);
         if (!isset($this->clients[$id])) {
             continue;
         }
         if ($this->clients[$id]["writedata"] === "") {
             $this->ProcessClientQueuesAndTimeoutState($result, $id, false, true);
         } else {
             $result2 = @fwrite($fp, $this->clients[$id]["writedata"]);
             if ($result2 === false || feof($fp)) {
                 @fclose($fp);
                 unset($this->clients[$id]);
             } else {
                 $this->clients[$id]["writedata"] = (string) substr($this->clients[$id]["writedata"], $result2);
                 // Let the application know about the new client.
                 if ($this->clients[$id]["writedata"] === "") {
                     $result["clients"][$id] = $this->clients[$id];
                 }
             }
         }
         unset($writefps[$cid]);
     }
     // Handle client timeouts.
     foreach ($this->clients as $id => &$client) {
         if (!isset($result["clients"][$id]) && $client["writedata"] === "" && $client["websocket"] !== false) {
             $this->ProcessClientQueuesAndTimeoutState($result, $id, false, false);
         }
     }
     // Return any extra handles that were being waited on.
     $result["readfps"] = $readfps;
     $result["writefps"] = $writefps;
     $result["exceptfps"] = $exceptfps;
     return $result;
 }
Esempio n. 2
0
 function curl_exec($ch)
 {
     global $curl_init__map;
     $key = get_check_curl_init_key($ch);
     // Set allowed protocols.
     $allowedprotocols = array("http" => true, "https" => true);
     if (isset($curl_init__map[$key]["options"][CURLOPT_PROTOCOLS])) {
         $allowedprotocols["http"] = (bool) ($curl_init__map[$key]["options"][CURLOPT_PROTOCOLS] & CURLPROTO_HTTP);
         $allowedprotocols["https"] = (bool) ($curl_init__map[$key]["options"][CURLOPT_PROTOCOLS] & CURLPROTO_HTTPS);
     }
     $curl_init__map[$key]["browser"]->SetState(array("allowedprotocols" => $allowedprotocols));
     // Set allowed redirect protocols.
     $allowedprotocols = array("http" => true, "https" => true);
     if (isset($curl_init__map[$key]["options"][CURLOPT_REDIR_PROTOCOLS])) {
         $allowedprotocols["http"] = (bool) ($curl_init__map[$key]["options"][CURLOPT_REDIR_PROTOCOLS] & CURLPROTO_HTTP);
         $allowedprotocols["https"] = (bool) ($curl_init__map[$key]["options"][CURLOPT_REDIR_PROTOCOLS] & CURLPROTO_HTTPS);
     }
     $curl_init__map[$key]["browser"]->SetState(array("allowedredirprotocols" => $allowedprotocols));
     // Load cookies.  Violates the PHP/cURL definition a lot.  Whatever.
     if (isset($curl_init__map[$key]["options"][CURLOPT_COOKIEFILE]) && is_string($curl_init__map[$key]["options"][CURLOPT_COOKIEFILE]) && $curl_init__map[$key]["options"][CURLOPT_COOKIEFILE] != "") {
         $data = @unserialize(@file_get_contents($curl_init__map[$key]["options"][CURLOPT_COOKIEFILE]));
         if ($data !== false && is_array($data)) {
             // Load the WebBrowser() object with the cookies.
             $curl_init__map[$key]["browser"]->SetState(array("cookies" => $data));
         }
         $curl_init__map[$key]["options"][CURLOPT_COOKIEFILE] = "";
     }
     if (isset($curl_init__map[$key]["options"][CURLOPT_COOKIESESSION]) && $curl_init__map[$key]["options"][CURLOPT_COOKIESESSION]) {
         $curl_init__map[$key]["browser"]->DeleteSessionCookies();
     }
     // Set the autoreferer setting.
     $curl_init__map[$key]["browser"]->SetState(array("autoreferer" => isset($curl_init__map[$key]["options"][CURLOPT_AUTOREFERER]) && $curl_init__map[$key]["options"][CURLOPT_AUTOREFERER]));
     // Set the Referer.
     if (isset($curl_init__map[$key]["options"][CURLOPT_REFERER]) && is_string($curl_init__map[$key]["options"][CURLOPT_REFERER])) {
         $curl_init__map[$key]["browser"]->SetState(array("referer" => $curl_init__map[$key]["options"][CURLOPT_REFERER]));
     }
     // Set the followlocation and maxfollow settings.
     $curl_init__map[$key]["browser"]->SetState(array("followlocation" => isset($curl_init__map[$key]["options"][CURLOPT_FOLLOWLOCATION]) && $curl_init__map[$key]["options"][CURLOPT_FOLLOWLOCATION]));
     $curl_init__map[$key]["browser"]->SetState(array("maxfollow" => isset($curl_init__map[$key]["options"][CURLOPT_MAXREDIRS]) ? $curl_init__map[$key]["options"][CURLOPT_MAXREDIRS] : 20));
     // Set up the options array.
     $options = array();
     // Set connect and total timeout options.
     if (isset($curl_init__map[$key]["options"][CURLOPT_CONNECTTIMEOUT]) || isset($curl_init__map[$key]["options"][CURLOPT_CONNECTTIMEOUT_MS])) {
         $timeout = (isset($curl_init__map[$key]["options"][CURLOPT_CONNECTTIMEOUT]) ? $curl_init__map[$key]["options"][CURLOPT_CONNECTTIMEOUT] : 0) + (isset($curl_init__map[$key]["options"][CURLOPT_CONNECTTIMEOUT_MS]) ? $curl_init__map[$key]["options"][CURLOPT_CONNECTTIMEOUT_MS] : 0) / 1000;
         if ($timeout > 0) {
             $options["connecttimeout"] = $timeout;
             $options["proxyconnecttimeout"] = $timeout;
         }
     }
     if (isset($curl_init__map[$key]["options"][CURLOPT_TIMEOUT]) || isset($curl_init__map[$key]["options"][CURLOPT_TIMEOUT_MS])) {
         $timeout = (isset($curl_init__map[$key]["options"][CURLOPT_TIMEOUT]) ? $curl_init__map[$key]["options"][CURLOPT_TIMEOUT] : 0) + (isset($curl_init__map[$key]["options"][CURLOPT_TIMEOUT_MS]) ? $curl_init__map[$key]["options"][CURLOPT_TIMEOUT_MS] : 0) / 1000;
         if ($timeout > 0) {
             $options["connecttimeout"] = $timeout;
             $options["proxyconnecttimeout"] = $timeout;
         }
     }
     // Set proxy options.
     if (isset($curl_init__map[$key]["options"][CURLOPT_PROXY])) {
         if (isset($curl_init__map[$key]["options"][CURLOPT_PROXYTYPE]) && $curl_init__map[$key]["options"][CURLOPT_PROXYTYPE] != CURLPROXY_HTTP) {
             $curl_init__map[$key]["errorno"] = CURLE_UNSUPPORTED_PROTOCOL;
             $curl_init__map[$key]["errorinfo"] = HTTP::HTTPTranslate("CURLOPT_PROXYTYPE option is unsupported.");
             return false;
         }
         $proxyurl = $curl_init__map[$key]["options"][CURLOPT_PROXY];
         $proxyport = (int) (isset($curl_init__map[$key]["options"][CURLOPT_PROXYPORT]) ? $curl_init__map[$key]["options"][CURLOPT_PROXYPORT] : false);
         if ($proxyport < 1 || $proxyport > 65535) {
             $proxyport = false;
         }
         if (strpos($proxyurl, "://") === false) {
             $proxyurl = ($proxyport == 443 ? "https://" : "http://") . $proxyurl;
         }
         $proxyurl = HTTP::ExtractURL($proxyurl);
         if ($proxyport !== false) {
             $proxyurl["port"] = $proxyport;
         }
         if (isset($curl_init__map[$key]["options"][CURLOPT_PROXYUSERPWD])) {
             $userpass = explode(":", $curl_init__map[$key]["options"][CURLOPT_PROXYUSERPWD]);
             if (count($userpass) == 2) {
                 $proxyurl["loginusername"] = urldecode($userpass[0]);
                 $proxyurl["loginpassword"] = urldecode($userpass[1]);
             }
         }
         $options["proxyurl"] = HTTP::CondenseURL($proxyurl);
         if (isset($curl_init__map[$key]["options"][CURLOPT_HTTPPROXYTUNNEL])) {
             $options["proxyconnect"] = $curl_init__map[$key]["options"][CURLOPT_HTTPPROXYTUNNEL];
         }
     }
     // Set SSL options.
     $options["sslopts"] = array();
     $options["sslopts"]["verify_peer"] = isset($curl_init__map[$key]["options"][CURLOPT_SSL_VERIFYPEER]) ? $curl_init__map[$key]["options"][CURLOPT_SSL_VERIFYPEER] : true;
     if (isset($curl_init__map[$key]["options"][CURLOPT_CAINFO])) {
         $options["sslopts"]["cafile"] = $curl_init__map[$key]["options"][CURLOPT_CAINFO];
     }
     if (isset($curl_init__map[$key]["options"][CURLOPT_CAPATH])) {
         $options["sslopts"]["capath"] = $curl_init__map[$key]["options"][CURLOPT_CAPATH];
     }
     if (!isset($options["sslopts"]["cafile"]) && !isset($options["sslopts"]["capath"])) {
         $options["sslopts"]["auto_cainfo"] = true;
     }
     if (isset($curl_init__map[$key]["options"][CURLOPT_SSLCERT]) && isset($curl_init__map[$key]["options"][CURLOPT_SSLKEY])) {
         if ($curl_init__map[$key]["options"][CURLOPT_SSLCERT] !== $curl_init__map[$key]["options"][CURLOPT_SSLKEY]) {
             $curl_init__map[$key]["errorno"] = CURLE_SSL_CONNECT_ERROR;
             $curl_init__map[$key]["errorinfo"] = HTTP::HTTPTranslate("CURLOPT_SSLCERT and CURLOPT_SSLKEY must be identical.");
             return false;
         }
         $certpass = isset($curl_init__map[$key]["options"][CURLOPT_SSLCERTPASSWD]) ? $curl_init__map[$key]["options"][CURLOPT_SSLCERTPASSWD] : false;
         $keypass = isset($curl_init__map[$key]["options"][CURLOPT_SSLKEYPASSWD]) ? $curl_init__map[$key]["options"][CURLOPT_SSLKEYPASSWD] : false;
         if ($certpass !== $keypass) {
             $curl_init__map[$key]["errorno"] = CURLE_SSL_CONNECT_ERROR;
             $curl_init__map[$key]["errorinfo"] = HTTP::HTTPTranslate("CURLOPT_SSLCERTPASSWD and CURLOPT_SSLKEYPASSWD must be identical.");
             return false;
         }
         $certtype = strtoupper(isset($curl_init__map[$key]["options"][CURLOPT_SSLCERTTYPE]) ? $curl_init__map[$key]["options"][CURLOPT_SSLCERTTYPE] : "PEM");
         $keytype = strtoupper(isset($curl_init__map[$key]["options"][CURLOPT_SSLKEYTYPE]) ? $curl_init__map[$key]["options"][CURLOPT_SSLKEYTYPE] : "PEM");
         if ($certpass !== $keypass || $cert !== "PEM") {
             $curl_init__map[$key]["errorno"] = CURLE_SSL_CONNECT_ERROR;
             $curl_init__map[$key]["errorinfo"] = HTTP::HTTPTranslate("CURLOPT_SSLCERTTYPE and CURLOPT_SSLKEYTYPE must be PEM format.");
             return false;
         }
         $options["sslopts"]["local_cert"] = $curl_init__map[$key]["options"][CURLOPT_SSLCERT];
         if ($certpass !== false) {
             $options["sslopts"]["passphrase"] = $certpass;
         }
     }
     if (isset($curl_init__map[$key]["options"][CURLOPT_SSL_CIPHER_LIST])) {
         $options["sslopts"]["ciphers"] = $curl_init__map[$key]["options"][CURLOPT_SSL_CIPHER_LIST];
     }
     $options["sslopts"]["auto_cn_match"] = true;
     $options["sslopts"]["auto_sni"] = true;
     $options["sslopts"]["capture_peer_cert"] = isset($curl_init__map[$key]["options"][CURLOPT_CERTINFO]) ? $curl_init__map[$key]["options"][CURLOPT_CERTINFO] : false;
     // Set the method.
     if (isset($curl_init__map[$key]["options"][CURLOPT_UPLOAD]) && (bool) $curl_init__map[$key]["options"][CURLOPT_UPLOAD]) {
         $options["method"] = "PUT";
     } else {
         $options["method"] = $curl_init__map[$key]["method"];
     }
     // Set the HTTP version.
     if (isset($curl_init__map[$key]["options"][CURLOPT_HTTP_VERSION])) {
         if ($curl_init__map[$key]["options"][CURLOPT_HTTP_VERSION] == CURL_HTTP_VERSION_1_0) {
             $options["httpver"] = "1.0";
         } else {
             if ($curl_init__map[$key]["options"][CURLOPT_HTTP_VERSION] == CURL_HTTP_VERSION_1_1) {
                 $options["httpver"] = "1.1";
             }
         }
     }
     // Set rate limits.
     if (isset($curl_init__map[$key]["options"][CURLOPT_MAX_RECV_SPEED_LARGE])) {
         $options["recvratelimit"] = $curl_init__map[$key]["options"][CURLOPT_MAX_RECV_SPEED_LARGE];
     }
     if (isset($curl_init__map[$key]["options"][CURLOPT_MAX_SEND_SPEED_LARGE])) {
         $options["sendratelimit"] = $curl_init__map[$key]["options"][CURLOPT_MAX_SEND_SPEED_LARGE];
     }
     // Set headers.
     $options["headers"] = array();
     $options["headers"]["Accept"] = "*/*";
     if (isset($curl_init__map[$key]["options"][CURLOPT_HTTPHEADER]) && is_array($curl_init__map[$key]["options"][CURLOPT_HTTPHEADER])) {
         foreach ($curl_init__map[$key]["options"][CURLOPT_HTTPHEADER] as $header) {
             $pos = strpos($header, ":");
             if ($pos !== false) {
                 $val = ltrim(substr($header, $pos + 1));
                 if ($val == "") {
                     unset($options["headers"][HTTP::HeaderNameCleanup(substr($header, 0, $pos))]);
                 } else {
                     $options["headers"][HTTP::HeaderNameCleanup(substr($header, 0, $pos))] = $val;
                 }
             }
         }
     }
     if (isset($curl_init__map[$key]["options"][CURLOPT_USERAGENT])) {
         $options["headers"]["User-Agent"] = $curl_init__map[$key]["options"][CURLOPT_USERAGENT];
     }
     if (isset($curl_init__map[$key]["options"][CURLOPT_COOKIE])) {
         $options["headers"]["Cookie"] = $curl_init__map[$key]["options"][CURLOPT_COOKIE];
     }
     if (isset($curl_init__map[$key]["options"][CURLOPT_RANGE])) {
         $options["headers"]["Range"] = "bytes=" . $curl_init__map[$key]["options"][CURLOPT_RANGE];
     }
     if (isset($curl_init__map[$key]["options"][CURLOPT_RESUME_FROM])) {
         $options["headers"]["Range"] = "bytes=" . $curl_init__map[$key]["options"][CURLOPT_RESUME_FROM] . "-";
     }
     if (isset($curl_init__map[$key]["options"][CURLOPT_TIMECONDITION]) && isset($curl_init__map[$key]["options"][CURLOPT_TIMEVALUE])) {
         if ($curl_init__map[$key]["options"][CURLOPT_TIMECONDITION] == CURL_TIMECOND_IFMODSINCE) {
             $options["headers"]["If-Modified-Since"] = gmdate("D, d M Y H:i:s", $curl_init__map[$key]["options"][CURLOPT_TIMEVALUE]) . " GMT";
         } else {
             if ($curl_init__map[$key]["options"][CURLOPT_TIMECONDITION] == CURL_TIMECOND_IFUNMODSINCE) {
                 $options["headers"]["If-Unmodified-Since"] = gmdate("D, d M Y H:i:s", $curl_init__map[$key]["options"][CURLOPT_TIMEVALUE]) . " GMT";
             }
         }
     }
     // Set POST variables and files.
     if (isset($curl_init__map[$key]["options"][CURLOPT_POSTFIELDS])) {
         $postvars = $curl_init__map[$key]["options"][CURLOPT_POSTFIELDS];
         if (is_string($postvars)) {
             $postvars2 = array();
             $postvars = explode("&", $postvars);
             foreach ($postvars as $postvar) {
                 $pos = strpos($postvar, "=");
                 if ($pos === false) {
                     $name = urldecode($postvar);
                     $val = "";
                 } else {
                     $name = urldecode(substr($postvar, 0, $pos));
                     $val = urldecode(substr($postvar, $pos + 1));
                 }
                 if (!isset($postvars2[$name])) {
                     $postvars2[$name] = array();
                 }
                 $postvars2[$name][] = $val;
             }
             $postvars = $postvars2;
             unset($postvars2);
         }
         foreach ($postvars as $name => $vals) {
             if (is_string($vals) || is_numeric($vals)) {
                 $vals = array($vals);
             }
             foreach ($vals as $num => $val) {
                 // Move files to their own array.
                 if (substr($val, 0, 1) == "@") {
                     $pos = strrpos($val, ";type=");
                     if ($pos === false) {
                         $mimetype = "";
                     } else {
                         $mimetype = substr($val, $pos + 6);
                         $val = substr($val, 0, $pos);
                     }
                     $val = substr($val, 1);
                     if (file_exists($val)) {
                         if (!isset($options["files"])) {
                             $options["files"] = array();
                         }
                         $options["files"][] = array("name" => $name, "filename" => HTTP::FilenameSafe(HTTP::ExtractFilename($val)), "type" => $mimetype, "datafile" => $val);
                         unset($vals[$num]);
                     }
                 }
             }
             if (!count($vals)) {
                 unset($postvars[$name]);
             } else {
                 $postvars[$name] = $vals;
             }
         }
         $options["postvars"] = $postvars;
         $options["method"] = "POST";
     }
     // Process the URL.
     if (!isset($curl_init__map[$key]["options"][CURLOPT_URL]) || !is_string($curl_init__map[$key]["options"][CURLOPT_URL]) || $curl_init__map[$key]["options"][CURLOPT_URL] == "") {
         $curl_init__map[$key]["errorno"] = CURLE_URL_MALFORMAT;
         $curl_init__map[$key]["errorinfo"] = HTTP::HTTPTranslate("No CURLOPT_URL option specified.");
         return false;
     }
     $url = HTTP::ExtractURL($curl_init__map[$key]["options"][CURLOPT_URL]);
     if ($url["scheme"] == "") {
         $curl_init__map[$key]["errorno"] = CURLE_URL_MALFORMAT;
         $curl_init__map[$key]["errorinfo"] = HTTP::HTTPTranslate("CURLOPT_URL does not have a scheme.");
         return false;
     }
     if ($url["host"] == "") {
         $curl_init__map[$key]["errorno"] = CURLE_URL_MALFORMAT;
         $curl_init__map[$key]["errorinfo"] = HTTP::HTTPTranslate("CURLOPT_URL does not specify a valid host.");
         return false;
     }
     if (isset($curl_init__map[$key]["options"][CURLOPT_PORT]) && (int) $curl_init__map[$key]["options"][CURLOPT_PORT] > 0 && (int) $curl_init__map[$key]["options"][CURLOPT_PORT] < 65536) {
         $url["port"] = (int) $curl_init__map[$key]["options"][CURLOPT_PORT];
     }
     if (isset($curl_init__map[$key]["options"][CURLOPT_USERPWD])) {
         $userpass = explode(":", $curl_init__map[$key]["options"][CURLOPT_USERPWD]);
         if (count($userpass) == 2) {
             $url["loginusername"] = urldecode($userpass[0]);
             $url["loginpassword"] = urldecode($userpass[1]);
         }
     } else {
         if (isset($curl_init__map[$key]["options"][CURLOPT_NETRC]) && $curl_init__map[$key]["options"][CURLOPT_NETRC]) {
             $data = @file_get_contents("~/.netrc");
             if ($data !== false) {
                 $lines = explode("\n", $data);
                 unset($data);
                 $host = false;
                 $user = false;
                 $password = false;
                 foreach ($lines as $line) {
                     $line = trim($line);
                     if (substr($line, 0, 8) == "machine ") {
                         $host = trim(substr($line, 8));
                     }
                     if (substr($line, 0, 6) == "login ") {
                         $user = trim(substr($line, 6));
                     }
                     if (substr($line, 0, 9) == "password ") {
                         $password = trim(substr($line, 9));
                     }
                     if ($host !== false && $user !== false && $password !== false) {
                         if ($host === $url["host"] || isset($options["headers"]["Host"]) && $host === $options["headers"]["Host"]) {
                             $url["loginusername"] = $user;
                             $url["loginpassword"] = $password;
                         }
                         $host = false;
                         $user = false;
                         $password = false;
                     }
                 }
                 unset($lines);
             }
         }
     }
     // Condense URL.
     $url = HTTP::CondenseURL($url);
     // Set up internal callbacks.
     $options["read_headers_callback"] = "internal_curl_read_headers_callback";
     $options["read_headers_callback_opts"] = $key;
     if (!isset($curl_init__map[$key]["options"][CURLOPT_NOBODY]) || !$curl_init__map[$key]["options"][CURLOPT_NOBODY]) {
         $options["read_body_callback"] = "internal_curl_read_body_callback";
         $options["read_body_callback_opts"] = $key;
     }
     if ($options["method"] != "GET" && $options["method"] != "POST") {
         $options["write_body_callback"] = "internal_curl_write_body_callback";
         $options["write_body_callback_opts"] = $key;
     }
     $options["debug_callback"] = "internal_curl_debug_callback";
     $options["debug_callback_opts"] = $key;
     // Remove weird callback results.
     unset($curl_init__map[$key]["rawproxyheaders"]);
     unset($curl_init__map[$key]["rawheaders"]);
     unset($curl_init__map[$key]["returnresponse"]);
     unset($curl_init__map[$key]["returnheader"]);
     unset($curl_init__map[$key]["returnbody"]);
     unset($curl_init__map[$key]["filetime"]);
     $curl_init__map[$key]["outputbody"] = false;
     // Process the request.
     $result = $curl_init__map[$key]["browser"]->Process($url, "", $options);
     $curl_init__map[$key]["lastresult"] = $result;
     // Deal with cookies.
     if (!isset($curl_init__map[$key]["options"][CURLOPT_COOKIEFILE]) || !is_string($curl_init__map[$key]["options"][CURLOPT_COOKIEFILE])) {
         // Delete all cookies for another run later.
         $curl_init__map[$key]["browser"]->SetState(array("cookies" => array()));
     } else {
         if (isset($curl_init__map[$key]["options"][CURLOPT_COOKIEJAR])) {
             // Write out cookies here.  Another violation of how cURL does things.  Another - whatever.
             $state = $curl_init__map[$key]["browser"]->GetState();
             file_put_contents($curl_init__map[$key]["options"][CURLOPT_COOKIEJAR], serialize($state["cookies"]));
         }
     }
     // Process the response.
     if (!$result["success"]) {
         if ($result["errorcode"] == "allowed_protocols") {
             $curl_init__map[$key]["errorno"] = CURLE_UNSUPPORTED_PROTOCOL;
             $curl_init__map[$key]["errorinfo"] = HTTP::HTTPTranslate("The cURL emulation layer does not support the protocol or was redirected to an unsupported protocol by the host.  %s", $result["error"]);
         } else {
             if ($result["errorcode"] == "allowed_redir_protocols") {
                 $curl_init__map[$key]["errorno"] = CURLE_UNSUPPORTED_PROTOCOL;
                 $curl_init__map[$key]["errorinfo"] = HTTP::HTTPTranslate("The cURL emulation layer was redirected to an unsupported protocol by the host.  %s", $result["error"]);
             } else {
                 if ($result["errorcode"] == "retrievewebpage") {
                     if ($result["info"]["errorcode"] == "timeout_exceeded") {
                         $curl_init__map[$key]["errorno"] = CURLE_OPERATION_TIMEDOUT;
                         $curl_init__map[$key]["errorinfo"] = HTTP::HTTPTranslate("The operation timed out.  %s", $result["error"]);
                     } else {
                         if ($result["info"]["errorcode"] == "get_response_line") {
                             $curl_init__map[$key]["errorno"] = CURLE_READ_ERROR;
                             $curl_init__map[$key]["errorinfo"] = HTTP::HTTPTranslate("Unable to get the response line.  %s", $result["error"]);
                         } else {
                             if ($result["info"]["errorcode"] == "read_header_callback") {
                                 $curl_init__map[$key]["errorno"] = CURLE_READ_ERROR;
                                 $curl_init__map[$key]["errorinfo"] = HTTP::HTTPTranslate("A read error occurred in the read header callback.  %s", $result["error"]);
                             } else {
                                 if ($result["info"]["errorcode"] == "read_body_callback") {
                                     $curl_init__map[$key]["errorno"] = CURLE_READ_ERROR;
                                     $curl_init__map[$key]["errorinfo"] = HTTP::HTTPTranslate("A read error occurred in the read body callback.  %s", $result["error"]);
                                 } else {
                                     if ($result["info"]["errorcode"] == "function_check") {
                                         $curl_init__map[$key]["errorno"] = CURLE_FUNCTION_NOT_FOUND;
                                         $curl_init__map[$key]["errorinfo"] = HTTP::HTTPTranslate("A required function was not found.  %s", $result["error"]);
                                     } else {
                                         if ($result["info"]["errorcode"] == "protocol_check") {
                                             $curl_init__map[$key]["errorno"] = CURLE_UNSUPPORTED_PROTOCOL;
                                             $curl_init__map[$key]["errorinfo"] = HTTP::HTTPTranslate("The cURL emulation layer does not support the protocol or was redirected to an unsupported protocol by the host.  %s", $result["error"]);
                                         } else {
                                             if ($result["info"]["errorcode"] == "transport_not_installed") {
                                                 $curl_init__map[$key]["errorno"] = CURLE_NOT_BUILT_IN;
                                                 $curl_init__map[$key]["errorinfo"] = HTTP::HTTPTranslate("The cURL emulation layer attempted to use a required transport to connect to a host but failed.  %s", $result["error"]);
                                             } else {
                                                 if ($result["info"]["errorcode"] == "proxy_transport_not_installed") {
                                                     $curl_init__map[$key]["errorno"] = CURLE_NOT_BUILT_IN;
                                                     $curl_init__map[$key]["errorinfo"] = HTTP::HTTPTranslate("The cURL emulation layer attempted to use a required transport to connect to a proxy but failed.  %s", $result["error"]);
                                                 } else {
                                                     if ($result["info"]["errorcode"] == "proxy_connect") {
                                                         $curl_init__map[$key]["errorno"] = CURLE_COULDNT_CONNECT;
                                                         $curl_init__map[$key]["errorinfo"] = HTTP::HTTPTranslate("Unable to connect to the proxy.  %s", $result["error"]);
                                                     } else {
                                                         if ($result["info"]["errorcode"] == "proxy_connect_tunnel") {
                                                             $curl_init__map[$key]["errorno"] = CURLE_COULDNT_CONNECT;
                                                             $curl_init__map[$key]["errorinfo"] = HTTP::HTTPTranslate("Unable to open a tunnel through the connected proxy.  %s", $result["error"]);
                                                         } else {
                                                             if ($result["info"]["errorcode"] == "connect_failed") {
                                                                 $curl_init__map[$key]["errorno"] = CURLE_COULDNT_CONNECT;
                                                                 $curl_init__map[$key]["errorinfo"] = HTTP::HTTPTranslate("Unable to connect to the host.  %s", $result["error"]);
                                                             } else {
                                                                 if ($result["info"]["errorcode"] == "write_body_callback") {
                                                                     $curl_init__map[$key]["errorno"] = CURLE_WRITE_ERROR;
                                                                     $curl_init__map[$key]["errorinfo"] = HTTP::HTTPTranslate("A write error occurred in the write body callback.  %s", $result["error"]);
                                                                 } else {
                                                                     if ($result["info"]["errorcode"] == "file_open") {
                                                                         $curl_init__map[$key]["errorno"] = CURLE_FILE_COULDNT_READ_FILE;
                                                                         $curl_init__map[$key]["errorinfo"] = HTTP::HTTPTranslate("Unable to open file for upload.  %s", $result["error"]);
                                                                     } else {
                                                                         if ($result["info"]["errorcode"] == "file_read") {
                                                                             $curl_init__map[$key]["errorno"] = CURLE_READ_ERROR;
                                                                             $curl_init__map[$key]["errorinfo"] = HTTP::HTTPTranslate("A read error occurred while uploading a file.  %s", $result["error"]);
                                                                         } else {
                                                                             $curl_init__map[$key]["errorno"] = CURLE_HTTP_RETURNED_ERROR;
                                                                             $curl_init__map[$key]["errorinfo"] = HTTP::HTTPTranslate("An error occurred.  %s", $result["error"]);
                                                                         }
                                                                     }
                                                                 }
                                                             }
                                                         }
                                                     }
                                                 }
                                             }
                                         }
                                     }
                                 }
                             }
                         }
                     }
                 }
             }
         }
         return false;
     }
     if (isset($curl_init__map[$key]["returnresponse"]) && $curl_init__map[$key]["returnresponse"]["code"] >= 400 && isset($curl_init__map[$key]["options"][CURLOPT_FAILONERROR]) && $curl_init__map[$key]["options"][CURLOPT_FAILONERROR]) {
         $curl_init__map[$key]["errorno"] = CURLE_HTTP_RETURNED_ERROR;
         $curl_init__map[$key]["errorinfo"] = HTTP::HTTPTranslate("A HTTP error occurred.  %s", $curl_init__map[$key]["returnresponse"]["line"]);
         return false;
     }
     if (isset($curl_init__map[$key]["options"][CURLOPT_FOLLOWLOCATION]) && $curl_init__map[$key]["options"][CURLOPT_FOLLOWLOCATION] && isset($result["headers"]["Location"])) {
         $curl_init__map[$key]["errorno"] = CURLE_TOO_MANY_REDIRECTS;
         $curl_init__map[$key]["errorinfo"] = HTTP::HTTPTranslate("Too many redirects took place.");
         return false;
     }
     if (isset($curl_init__map[$key]["options"][CURLOPT_RETURNTRANSFER]) && $curl_init__map[$key]["options"][CURLOPT_RETURNTRANSFER]) {
         return (isset($curl_init__map[$key]["returnheader"]) ? $curl_init__map[$key]["returnheader"] . "\r\n" : "") . (isset($curl_init__map[$key]["returnbody"]) ? $curl_init__map[$key]["returnbody"] : "");
     }
     return true;
 }