php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #32184 I think it's the socket daemon script 's bug
Submitted: 2005-03-04 09:02 UTC Modified: 2005-03-12 01:00 UTC
Votes:1
Avg. Score:5.0 ± 0.0
Reproduced:1 of 1 (100.0%)
Same Version:1 (100.0%)
Same OS:1 (100.0%)
From: huoqi29 at 163 dot com Assigned:
Status: No Feedback Package: Sockets related
PHP Version: 5.0.3 OS: Linux DevelopWeb 2.6.8-24-smp #1
Private report: No CVE-ID: None
View Add Comment Developer Edit
Anyone can comment on a bug. Have a simpler test case? Does it work for you on a different platform? Let us know!
Just going to say 'Me too!'? Don't clutter the database with that please — but make sure to vote on the bug!
Your email address:
MUST BE VALID
Solve the problem:
34 - 22 = ?
Subscribe to this entry?

 
 [2005-03-04 09:02 UTC] huoqi29 at 163 dot com
Description:
------------
   If you uncomment the '//echo "Bug";' and when you run this script ,you will get the expect result if you don't logout, and when you login and "ps -aux " you can find it.
   But where you "telnet 127.0.0.1 99999" you can't connect it .

Reproduce code:
---------------
<?php
if(pcntl_fork()){exit;} posix_setsid(); chdir("/"); umask(0);
$sock=socket_create(AF_INET,SOCK_STREAM,SOL_TCP);
socket_bind($sock,"127.0.0.1",99999);
socket_listen($sock); $R=array($sock);
while(1) { $T=$R; if($C=socket_select($T,$W=NULL,$E=NULL,0,0)) {
                foreach($T as $sock2) {
                        if($sock2==$sock) {
                                $client=socket_accept($sock);
                                array_push($R,$client);
                        }
                        else{ //echo "Bug";
                        //socket_getpeername($sock2,&$add,&$prot);
                        $B=socket_recv($sock2,$Buf,1024,0);
                        if($B==0 || chop($Buf)=="quit" || chop($Buf)=="exit") {
                                $I=array_search($sock2,$R);
                                unset($R[$I]);
                                socket_close($sock2);
                        }else socket_send($sock2,"Hello".$Buf,1024,0);
                        } } } } ?>


Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2005-03-04 09:09 UTC] huoqi29 at 163 dot com
Trying 127.0.0.1...
telnet: connect to address 127.0.0.1: Connection refused
 [2005-03-04 11:32 UTC] tony2001@php.net
Not enough information was provided for us to be able
to handle this bug. Please re-read the instructions at
http://bugs.php.net/how-to-report.php

If you can provide more information, feel free to add it
to this bug and change the status back to "Open".

Thank you for your interest in PHP.


Can't reproduce.
Please explain more clearly - what do you expect and what do you get.
 [2005-03-12 01:00 UTC] php-bugs at lists dot php dot net
No feedback was provided for this bug for over a week, so it is
being suspended automatically. If you are able to provide the
information that was originally requested, please do so and change
the status of the bug back to "Open".
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Sat Apr 20 00:01:27 2024 UTC