Jump to content

socket write error


alin19

Recommended Posts

Have you successfully connected to the socket prior with

socket_connect()

Do you have an error routine if the connection fails i.e.

if(!socket_connect(connection params)) {
print "could not connect to socket";
exit();
}

// continue processing - write to socket

Link to comment
https://forums.phpfreaks.com/topic/131336-socket-write-error/#findComment-681984
Share on other sites

i'm using a pcntl_fork(), parent reading and child is writing, and i think that the child has remained open after i closed the parent, just twice has  hapened,

 

so there were was a child writing to that socket  and the parent was disconected from the socket, so  the socket was close,  i think this was the problem

 

i will be back after more tests

 

 

Link to comment
https://forums.phpfreaks.com/topic/131336-socket-write-error/#findComment-682067
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.