[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 -3
View File
@@ -41,11 +41,10 @@ class Client_ClientManager {
/**
* Default constructor.
* @param string $linebreak
* @return void
*/
function __construct($linebreak = "\r\n") {
$this->connectionPool = new Connection_ConnectionPool($linebreak);
function __construct() {
$this->connectionPool = new Connection_ConnectionPool();
$this->clientPool = array();
$this->registeredProtocols = array();
$this->routingRules = array();