Skip to content
This repository has been archived by the owner on Sep 20, 2021. It is now read-only.

Commit

Permalink
Reintroduce flags and reverse when connecting.
Browse files Browse the repository at this point in the history
It partly reverses 6830694.
  • Loading branch information
Hywan committed Jul 20, 2015
1 parent f348b74 commit 2714fb1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Client.php
Original file line number Diff line number Diff line change
Expand Up @@ -142,17 +142,17 @@ protected function &_open($streamName, Stream\Context $context = null)
$streamName,
$errno,
$errstr,
$this->getTimeout()/*,
$this->getFlag()*/
$this->getTimeout(),
$this->getFlag()
);
} else {
$connection = @stream_socket_client(
$streamName,
$errno,
$errstr,
$this->getTimeout()/*,
$this->getTimeout(),
$this->getFlag(),
$context->getContext()*/
$context->getContext()
);
}

Expand Down

0 comments on commit 2714fb1

Please sign in to comment.