Indeed, ftp:// doesn't use the transports layer at all. I'll patch this
up
-Sara
""Nuno Lopes"" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> OK. but at least it could work with 'x.x.x.x:0'. From I what I remember
from
> the code, it always uses NULL as bindto when calling
>
> Thanks as usual to Edin for the quick turnaround on the
> Windows builds.
+4,294,967,295
Best,
Mike Robinson
--
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php
OK. but at least it could work with 'x.x.x.x:0'. From I what I remember from
the code, it always uses NULL as bindto when calling
php_network_connect_socket_to_host().
Nuno
- Original Message -
FTP creates two socket connections during normal operation; it will
attempt to bind both
FTP creates two socket connections during normal operation; it will
attempt to bind both to the port you specified.
--Wez.
On 7/13/05, Nuno Lopes <[EMAIL PROTECTED]> wrote:
> Well I've tested again and it works also with the 'tcp' wrapper, but not
> with ftp.
>
> consider this:
> $bogus = strea
Well I've tested again and it works also with the 'tcp' wrapper, but not
with ftp.
consider this:
$bogus = stream_context_create(array('socket'=>array('bindto' =>
"1.2.3.1:5000")));
echo
file_get_contents('http://darkstar.ist.utl.pt/gentoo/snapshots/portage-20050712.tar.bz2.md5sum',
NULL, $bo
It is not a wrapper specific context option, it'll work with any TCP/IP
socket.
Ilia
Nuno Lopes wrote:
iliaa Mon Jun 13 22:39:43 2005 EDT
Modified files:
/php-src/main network.c php_network.h
/php-src/main/streams xp_socket.c
/php-src/ext/ftp ftp.c
/php-src NEWS
Log:
Added bind
iliaa Mon Jun 13 22:39:43 2005 EDT
Modified files:
/php-src/main network.c php_network.h
/php-src/main/streams xp_socket.c
/php-src/ext/ftp ftp.c
/php-src NEWS
Log:
Added bindto socket context option.
Hi,
I was going to document this new feature but I have a question:
Does the