between using
$sock = socket_create_listen();
and
$sock = socket_create(AF_INET, SOCK_STREAM, SOL_TCP);
socket_bind($sock);
socket_listen($sock);
I've read through the documentation and googled and most of the examples for sockets use the three basic functions with no mention of socket_create_listen(). I know you have more flexibility with the second way, but I'm using AF_INET and I don't need think I need to restrict the domain.
Any opinions?