Home » Networking » Net_SMTP » Bug #982
Persistent connections disabled
Details
| Submitted | 2004-03-09 15:35 UTC |
|---|---|
| From | ash at bigfoot dot de |
| Assigned | jon |
| Status | Closed |
| Package | Net_SMTP |
| PHP Version | 5.0.0b4 (beta4) |
| OS | Windows NT HAL 5.1 build 2600 |
| Roadmaps | (Not assigned) |
Comments
[2004-03-09 15:35 UTC] ash at bigfoot dot de
Description:
------------
Hello,
persistent connections are programmatically disabled in function connect:
function connect($timeout = null) {
$result = $this->_socket->connect($this->host, $this->port, false, $timeout);
I propose the following code.
Keep up the good work,
René
Reproduce code:
---------------
function connect($timeout = null, $persistent = FALSE) {
$result = $this->_socket->connect($this->host, $this->port, $persistent, $timeout);