#include <socket.h>
Inheritance diagram for InetMcastAddress::
Public Methods | |
InetMcastAddress () | |
Create an Internet Multicast Address object with an empty (0.0.0.0) address. More... | |
InetMcastAddress (const struct in_addr address) | |
Convert the system internet address data type (struct in_addr) into a Common C++ InetMcastAddress object. More... | |
InetMcastAddress (const char *address) | |
Convert a null terminated ASCII multicast address string (example: "224.0.0.1") or multicast name string (example: "sap.mcast.net") directly into a Common C++ InetMcastAddress object. More... |
Whenever its value changes the new value is checked to be in the range from 224.0.0.1 through 239.255.255.255. If it is not, an exception is thrown.
|
Create an Internet Multicast Address object with an empty (0.0.0.0) address.
|
|
Convert the system internet address data type (struct in_addr) into a Common C++ InetMcastAddress object.
|
|
Convert a null terminated ASCII multicast address string (example: "224.0.0.1") or multicast name string (example: "sap.mcast.net") directly into a Common C++ InetMcastAddress object. Works like InetAddress(const char*).
|