Open sylbru opened 6 years ago
It looks like some of these lines (the socket_strerror
and socket_last_error
ones) were present as well in branch 2.0, but never caused an issue for me, even if the functions do not exist.
The fact that it didn't work anymore in my app is simply due to the fact that I've reinstalled the library with Composer, without applying my dirty patch I mentioned in #107.
This issue is not as relevant for me now, but I'm not sure if it still might be considered. If it will not, feel free to close the issue.
The issue may actually still be relevant now, because from time to time a connexion causes an error and the websocket server crashes because of socket_strerror
being undefined. Not sure what happens if I just remove this call (it is called when throwing an exception anyway), but I can't reproduce this because it happens only in production.
Hi,
I'm currently using Wrench 2 and wanted to upgrade to Wrench 3, only to realize that my webhost PHP install doesn't have the PHP Sockets extension enabled. It looks like even though
ext-sockets
is and was listed as a platform requirement, it wasn't actually required in branch 2.0 because Wrench did not usesocket_*
functions at the time, onlystream_socket_*
functions, which are "an integral part of PHP as of version 4.3.0." [See this article about the difference between the two]Looking for the use of
socket_*
functions in master branch, it looks like there is only a few of them:So the functions concerned would be:
socket_strerror
,socket_last_error
,socket_set_option
andsocket_import_stream
. I’m not sure if there is a way to get rid of this dependency on the Sockets extension, but it would make the library easier to adopt by more people.