|
@@ -76,8 +76,10 @@
|
|
chmod($this->address, 0702);
|
|
chmod($this->address, 0702);
|
|
}elseif(function_exists('posix_mkfifo')){
|
|
}elseif(function_exists('posix_mkfifo')){
|
|
posix_mkfifo($this->address, 0702);
|
|
posix_mkfifo($this->address, 0702);
|
|
|
|
+ }else{
|
|
|
|
+ throw new \Exception('Unable to create socket file');
|
|
}
|
|
}
|
|
- socket_bind($this->socket, $this->address);
|
|
|
|
|
|
+ $res = socket_bind($this->socket, $this->address);
|
|
}else{
|
|
}else{
|
|
$res = socket_bind($this->socket, $this->address, $this->port);
|
|
$res = socket_bind($this->socket, $this->address, $this->port);
|
|
}
|
|
}
|
|
@@ -87,7 +89,7 @@
|
|
$this->fire('listen', $this);
|
|
$this->fire('listen', $this);
|
|
}elseif($this->socket_type == static::CLIENT){
|
|
}elseif($this->socket_type == static::CLIENT){
|
|
if(is_null($this->port)){
|
|
if(is_null($this->port)){
|
|
- socket_connect($this->socket, $this->address);
|
|
|
|
|
|
+ $res = socket_connect($this->socket, $this->address);
|
|
}else{
|
|
}else{
|
|
$res = socket_connect($this->socket, $this->address, $this->port);
|
|
$res = socket_connect($this->socket, $this->address, $this->port);
|
|
}
|
|
}
|