Commit 676f46d0 by Michael Koch Committed by Michael Koch

2003-01-16 Michael Koch <konqueror@gmx.de>

	* java/net/MulticastSocket.java
	(setInterface): Reindented.

From-SVN: r61379
parent 64510a4f
2003-01-16 Michael Koch <konqueror@gmx.de>
* java/net/MulticastSocket.java
(setInterface): Reindented.
2003-01-15 Scott Gilbertson <scottg@mantatest.com> 2003-01-15 Scott Gilbertson <scottg@mantatest.com>
* gnu/gcj/xlib/natGC.cc (fillPolygon): New method. * gnu/gcj/xlib/natGC.cc (fillPolygon): New method.
......
...@@ -161,15 +161,15 @@ public class MulticastSocket extends DatagramSocket ...@@ -161,15 +161,15 @@ public class MulticastSocket extends DatagramSocket
return impl.getTimeToLive(); return impl.getTimeToLive();
} }
/** /**
* Sets the interface to use for sending multicast packets. * Sets the interface to use for sending multicast packets.
* *
* @param addr The new interface to use. * @param addr The new interface to use.
* *
* @exception SocketException If an error occurs. * @exception SocketException If an error occurs.
* *
* @since 1.4 * @since 1.4
*/ */
public void setInterface(InetAddress addr) throws SocketException public void setInterface(InetAddress addr) throws SocketException
{ {
impl.setOption(SocketOptions.IP_MULTICAST_IF, addr); impl.setOption(SocketOptions.IP_MULTICAST_IF, addr);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment