Home
last modified time | relevance | path

Searched refs:force_fsockopen (Results 1 – 5 of 5) sorted by path

/dokuwiki/inc/
H A DFeedParserFile.php30 __construct($url, $timeout = 10, $redirects = 5, $headers = null, $useragent = null, $force_fsockopen = false, $curl_options = array()) global() argument
/dokuwiki/vendor/simplepie/simplepie/src/
H A DFile.php72 public function __construct($url, $timeout = 10, $redirects = 5, $headers = null, $useragent = null, $force_fsockopen = false, $curl_options = []) argument
90 if (!$force_fsockopen && function_exists('curl_exec')) {
138 $this->__construct($location, $timeout, $redirects, $headers, $useragent, $force_fsockopen, $curl_options);
203 $this->__construct($location, $timeout, $redirects, $headers, $useragent, $force_fsockopen, $curl_options);
H A DLocator.php69 public $force_fsockopen = false; variable in SimplePie\\Locator
74 public function __construct(\SimplePie\File $file, $timeout = 10, $useragent = null, $max_checked_feeds = 10, $force_fsockopen = false, $curl_options = []) argument
80 $this->force_fsockopen = $force_fsockopen;
229 $feed = $this->registry->create(File::class, [$href, $this->timeout, 5, $headers, $this->useragent, $this->force_fsockopen, $this->curl_options]);
336 $feed = $this->registry->create(File::class, [$value, $this->timeout, 5, $headers, $this->useragent, $this->force_fsockopen, $this->curl_options]);
358 $feed = $this->registry->create(File::class, [$value, $this->timeout, 5, null, $this->useragent, $this->force_fsockopen, $this->curl_options]);
H A DSanitize.php89 public $force_fsockopen = false; variable in SimplePie\\Sanitize
169 public function pass_file_data($file_class = 'SimplePie\File', $timeout = 10, $useragent = '', $force_fsockopen = false) argument
179 if ($force_fsockopen) {
180 $this->force_fsockopen = (string) $force_fsockopen;
428 $file = $this->registry->create(File::class, [$img->getAttribute('src'), $this->timeout, 5, ['X-FORWARDED-FOR' => $_SERVER['REMOTE_ADDR']], $this->useragent, $this->force_fsockopen]);
H A DSimplePie.php492 * @see SimplePie::force_fsockopen()
495 public $force_fsockopen = false; variable in SimplePie\\SimplePie
863 public function force_fsockopen($enable = false) function in SimplePie\\SimplePie
865 $this->force_fsockopen = (bool) $enable;
1554 $this->sanitize->pass_file_data($this->registry->get_class(File::class), $this->timeout, $this->useragent, $this->force_fsockopen, $this->curl_options);
1777 $file = $this->registry->create(File::class, [$this->feed_url, $this->timeout/10, 5, $headers, $this->useragent, $this->force_fsockopen, $this->curl_options]);
1819 $file = $this->registry->create(File::class, [$this->feed_url, $this->timeout, 5, $headers, $this->useragent, $this->force_fsockopen, $this->curl_options]);
1832 $locate = $this->registry->create(Locator::class, [&$file, $this->timeout, $this->useragent, $this->max_checked_feeds, $this->force_fsockopen, $this->curl_options]);