filereader improvements

This commit is contained in:
kremsy
2014-02-17 00:34:20 +01:00
committed by Steffen Schröder
parent 2696c184dd
commit 93a7a997f8
3 changed files with 59 additions and 52 deletions

View File

@ -15,6 +15,7 @@ class SocketStructure {
public $function;
public $url;
public $creationTime;
public $header;
public function __construct($url, $socket, $function) {
$this->url = $url;
@ -22,5 +23,6 @@ class SocketStructure {
$this->function = $function;
$this->creationTime = time();
$this->streamBuffer = '';
$this->header = array();
}
}