Reset buffer/challenge when disconnecting

pull/29/head
xPaw 11 years ago
parent b6cb74d1a8
commit c2c0b6bef8

@ -128,8 +128,6 @@
public function Connect( $Ip, $Port, $Timeout = 3, $Engine = self :: SOURCE ) public function Connect( $Ip, $Port, $Timeout = 3, $Engine = self :: SOURCE )
{ {
$this->Disconnect( ); $this->Disconnect( );
$this->Buffer->Reset( );
$this->Challenge = 0;
if( !is_int( $Timeout ) || $Timeout < 0 ) if( !is_int( $Timeout ) || $Timeout < 0 )
{ {
@ -166,6 +164,9 @@
public function Disconnect( ) public function Disconnect( )
{ {
$this->Connected = false; $this->Connected = false;
$this->Challenge = 0;
$this->Buffer->Reset( );
$this->Socket->Close( ); $this->Socket->Close( );

Loading…
Cancel
Save