WinCE fixes

This commit is contained in:
Guenter Obiltschnig
2012-10-15 09:45:39 +00:00
parent 83af8a3be7
commit c49f14040c

View File

@@ -80,14 +80,14 @@ public:
~MulticastSocket();
/// Destroys the DatagramSocket.
MulticastSocket& operator =(const Socket& socket);
MulticastSocket& operator = (const Socket& socket);
/// Assignment operator.
///
/// Releases the socket's SocketImpl and
/// attaches the SocketImpl from the other socket and
/// increments the reference count of the SocketImpl.
void setInterface(const NetworkInterface& interface);
void setInterface(const NetworkInterface& interfc);
/// Sets the interface used for sending multicast packets.
///
/// To select the default interface, specify an empty
@@ -121,13 +121,13 @@ public:
void joinGroup(const IPAddress& groupAddress);
/// Joins the specified multicast group at the default interface.
void joinGroup(const IPAddress& groupAddress, const NetworkInterface& interface);
void joinGroup(const IPAddress& groupAddress, const NetworkInterface& interfc);
/// Joins the specified multicast group at the given interface.
void leaveGroup(const IPAddress& groupAddress);
/// Leaves the specified multicast group at the default interface.
void leaveGroup(const IPAddress& groupAddress, const NetworkInterface& interface);
void leaveGroup(const IPAddress& groupAddress, const NetworkInterface& interfc);
/// Leaves the specified multicast group at the given interface.
};