|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2002-04-17 13:32 UTC] tech at kalyweb dot com
When I attempt to bind a socket with socket_bind, PHP crashes.
It doesn't crash if the IP to bind to is an mepty string ("") ...
I have this error in the crash dialog :
PHP a caus? une d?faillance de page dans
le module MSVCRT.DLL ? 0167:78011f41.
Registres :
EAX=00002741 CS=0167 EIP=78011f41 EFLGS=00010206
EBX=00000073 SS=016f ESP=0063ee90 EBP=0063f0e4
ECX=00002741 DS=016f ESI=7ffffffe FS=c617
EDX=7fffffff ES=016f EDI=01447538 GS=0000
Octets ? CS : EIP :
80 38 00 74 03 40 eb f1 2b c1 e9 85 fe ff ff c7
?tat de la pile :
00000002 01172d94 0000000c 00023c30 bff7b30e 00410000 bff7b317 00410000 00000001 00413768 0000ffff 00023c30 0041374c 0063ef0c bff7b953 00410000
(it's in French and my windows is French ... sorry :D )
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sat Nov 01 05:00:01 2025 UTC |
Here is a small example of script ... if (($sock = socket_create (AF_INET, SOCK_STREAM, 0)) < 0) { echo "socket_create() failed: reason: " . socket_strerror ($sock) . "\n"; } if (($ret = socket_bind ($sock, '127.0.0.1', 10000)) < 0) { echo "socket_bind() failed: reason: " . socket_strerror ($ret) . "\n"; } PHP crashes here, on the socket_bind command. This script was found on the page about the socket functions. I've downloaded the last RC version but it also crashes. I have the window's dialog with 'Close', 'Debug' or 'Deltails >>' ...