[TASK] Started to move buffers into ProtocolHandler.

[TODO] Move buffers, finish the linebreak stuff.
This commit is contained in:
Jan Philipp Timme
2010-11-28 18:35:08 +00:00
parent db9dda856c
commit 5cb0714834
4 changed files with 22 additions and 6 deletions
+2 -2
View File
@@ -28,9 +28,9 @@ class Connection_ConnectionPool {
* Creates an Instance of SocketPool
* @return void
*/
function __construct($linebreak = "\r\n") {
function __construct() {
$this->connectionHandlers = array();
$this->socketPool = new Socket_SocketPool($linebreak);
$this->socketPool = new Socket_SocketPool();
$this->nextID = 1;
}