summaryrefslogtreecommitdiff
path: root/program/lib/Net/Socket.php
diff options
context:
space:
mode:
Diffstat (limited to 'program/lib/Net/Socket.php')
-rw-r--r--program/lib/Net/Socket.php11
1 files changed, 8 insertions, 3 deletions
diff --git a/program/lib/Net/Socket.php b/program/lib/Net/Socket.php
index a67a11af1..bf1d1bbcd 100644
--- a/program/lib/Net/Socket.php
+++ b/program/lib/Net/Socket.php
@@ -672,10 +672,15 @@ class Net_Socket extends PEAR
*/
function enableCrypto($enabled, $type)
{
- if (!is_resource($this->fp)) {
- return $this->raiseError('not connected');
+ if (version_compare(phpversion(), "5.1.0", ">=")) {
+ if (!is_resource($this->fp)) {
+ return $this->raiseError('not connected');
+ }
+ return @stream_socket_enable_crypto($this->fp, $enabled, $type);
+ } else {
+ $msg = 'Net_Socket::enableCrypto() requires php version >= 5.1.0';
+ return $this->raiseError($msg);
}
- return @stream_socket_enable_crypto($this->fp, $enabled, $type);
}
}