1. Socket_CreateMulticast - FileLog.net

    filelog.net/func/Socket_CreateMulticast

    Socket_CreateMulticast function in Export Directory: dnsapi.dll - DNS Client API DLL v. 6.3.9600.17415, sha1: 3c4883b4d260edfa4c9420e8bb731a99bebab725

  2. PHP: socket_get_option - Manual

    php.net/manual/en/function.socket-get-option.php

    The socket_get_option() function retrieves the value for the option specified by the optname parameter for the specified socket.

    • Code sample

      $socket = socket_create_listen(1223);
      $linger = array('l_linger' => 1, 'l_onoff' => 1);
      socket_set_option($socket, SOL_SOCKET, SO_LINGER, $linger);
      var_dump(socket_get_option($socket, SOL_SOCKET, SO_REUSEADDR));...
      © The PHP documentation is Copyright by and the property of the PHP Project and the PHP Group, and its inclusion in this product is not an endorsement by the PHP Project, PHP Group, or its subsidiaries and affiliates.
      See more on php.netWas this helpful?Thanks! Give more feedback
  3. socket function (Windows) - msdn.microsoft.com

    https://msdn.microsoft.com/en-us/library/windows/desktop/ms740506...

    The socket function creates a socket that is bound to a specific transport service provider. ... An example of this type is the Pragmatic General Multicast ...

  4. PHP: socket_create_listen - Manual

    php.net/manual/en/function.socket-create-listen.php

    socket_create_listen() creates a new socket resource of type AF_INET listening on all local interfaces on the given port waiting for new connections.

  5. javascript - How can chrome.socket be used for ...

    https://stackoverflow.com/questions/12253507

    How can chrome.socket be used for broadcasting or multicasting? ... socket.create('udp ... To send multicast packets all you need to do is bind to a ...

  6. linux - PHP Multicast server using sockets - Stack …

    https://stackoverflow.com/questions/34072383

    I'm trying to create a multicast server in PHP using the following code: $this->sock = socket_create(AF_INET, SOCK_DGRAM , SOL ... PHP Multicast server using sockets.

  7. UDP socket programming in php - BinaryTides

    www.binarytides.com/udp-socket-programming-in-php

    In a previous article we learnt about writing simple server and clients using TCP sockets in php. In this article we are going to use udp sockets for the same

  8. Windows Sockets: Using Class CAsyncSocket

    https://msdn.microsoft.com/en-us/library/t7a47kk4.aspx

    The latest version of this topic can be found at Windows Sockets: Using Class CAsyncSocket. This article explains how to use class CAsyncSocket.

  9. multicast_example.py · GitHub - Gist

    https://gist.github.com/4630685

    Embed Embed this gist in your website. ... my_socket = create_socket(multicast_ip, port + 1) # NOTE: Announcing every second, as this loop does, ...

  10. GLib.Socket.create_source – gio-2.0 - Vala

    https://valadoc.org/gio-2.0/GLib.Socket.create_source.html#!

    multicast_loopback; multicast_ttl; protocol; remote_address; timeout; ttl; type; ... public SocketSource create_source (IOCondition condition, Cancellable ...