aboutsummaryrefslogtreecommitdiff
path: root/libjava/java/net/MulticastSocket.java
diff options
context:
space:
mode:
authorWarren Levy <warrenl@cygnus.com>1999-05-18 18:02:01 +0000
committerWarren Levy <warrenl@gcc.gnu.org>1999-05-18 18:02:01 +0000
commit39b1a0588feb025b361cafcce5a63cb85cd94ee1 (patch)
treecffa67a526e3759bfc1898f73adcbdd86c134867 /libjava/java/net/MulticastSocket.java
parent0ffac8322f8825c0d696d9c700b0d0f1a395d11a (diff)
downloadgcc-39b1a0588feb025b361cafcce5a63cb85cd94ee1.zip
gcc-39b1a0588feb025b361cafcce5a63cb85cd94ee1.tar.gz
gcc-39b1a0588feb025b361cafcce5a63cb85cd94ee1.tar.bz2
Makefile.am (ordinary_java_source_files): Added DatagramPacket.java...
* Makefile.am (ordinary_java_source_files): Added DatagramPacket.java, DatagramSocket.java, DatagramSocketImpl.java, MulticastSocket.java, PlainDatagramSocketImpl.java, and SocketOptions.java. (nat_source_files): Added natPlainDatagramSocketImpl.cc. * Makefile.in: Rebuilt. * java/net/DatagramPacket.java: New file. * java/net/DatagramSocket.java: New file. * java/net/DatagramSocketImpl.java: New file. * java/net/MulticastSocket.java: New file. * java/net/PlainDatagramSocketImpl.java: New file. * java/net/SocketOptions.java: New file. * java/net/natPlainDatagramSocketImpl.cc: New file. From-SVN: r26997
Diffstat (limited to 'libjava/java/net/MulticastSocket.java')
-rw-r--r--libjava/java/net/MulticastSocket.java91
1 files changed, 91 insertions, 0 deletions
diff --git a/libjava/java/net/MulticastSocket.java b/libjava/java/net/MulticastSocket.java
new file mode 100644
index 0000000..1cb01c1
--- /dev/null
+++ b/libjava/java/net/MulticastSocket.java
@@ -0,0 +1,91 @@
+// MulticastSocket.java
+
+/* Copyright (C) 1999 Cygnus Solutions
+
+ This file is part of libgcj.
+
+This software is copyrighted work licensed under the terms of the
+Libgcj License. Please consult the file "LIBGCJ_LICENSE" for
+details. */
+
+package java.net;
+import java.io.IOException;
+
+/**
+ * @author Warren Levy <warrenl@cygnus.com>
+ * @date May 18, 1999.
+ */
+
+/**
+ * Written using on-line Java Platform 1.2 API Specification, as well
+ * as "The Java Class Libraries", 2nd edition (Addison-Wesley, 1998).
+ * Status: Believed complete and correct.
+ */
+
+public class MulticastSocket extends DatagramSocket
+{
+ // FIXME: the local addr bound to the multicast socket can be reused;
+ // unlike unicast sockets. see p.1159 JCL book.
+
+ public MulticastSocket() throws IOException
+ {
+ super(0, null);
+ }
+
+ public MulticastSocket(int port) throws IOException
+ {
+ super(port, null);
+ }
+
+ public InetAddress getInterface() throws SocketException
+ {
+ // FIXME: TODO - MulticastSocket.getInterface
+ throw new SocketException("MulticastSocket.getInterface - not yet implemented");
+ }
+
+ // Deprecated in JDK1.2
+ public byte getTTL() throws IOException
+ {
+ return impl.getTTL();
+ }
+
+ // JDK1.2
+ public int getTimeToLive() throws IOException
+ {
+ return impl.getTimeToLive();
+ }
+
+ public void setInterface(InetAddress inf) throws SocketException
+ {
+ // FIXME: TODO - MulticastSocket.setInterface
+ throw new SocketException("MulticastSocket.setInterface - not yet implemented");
+ }
+
+ // Deprecated in JDK1.2
+ public void setTTL(byte ttl) throws IOException
+ {
+ impl.setTTL(ttl);
+ }
+
+ // JDK1.2
+ public void setTimeToLive(int ttl) throws IOException
+ {
+ impl.setTimeToLive(ttl);
+ }
+
+ public void joinGroup(InetAddress mcastaddr) throws IOException
+ {
+ impl.join(mcastaddr);
+ }
+
+ public void leaveGroup(InetAddress mcastaddr) throws IOException
+ {
+ impl.leave(mcastaddr);
+ }
+
+ public void send(DatagramPacket p, byte ttl) throws IOException
+ {
+ // FIXME: use ttl instead of getTTL() for time to live.
+ impl.send(p);
+ }
+}