Java in a Nutshell Online Quick Reference for Java 1.1

CLASS java.net.DatagramSocketImpl

Availability: JDK 1.1

public abstract class DatagramSocketImpl extends Object {
   // Default Constructor: public DatagramSocketImpl()
   // Protected Instance Variables
      protected FileDescriptor fd;
      protected int localPort;
   // Protected Instance Methods
      protected abstract void bind(int lport, InetAddress laddr) throws SocketException;
      protected abstract void close();
      protected abstract void create() throws SocketException;
      protected FileDescriptor getFileDescriptor();
      protected int getLocalPort();
      protected abstract byte getTTL() throws IOException;
      protected abstract void join(InetAddress inetaddr) throws IOException;
      protected abstract void leave(InetAddress inetaddr) throws IOException;
      protected abstract int peek(InetAddress i) throws IOException;
      protected abstract void receive(DatagramPacket p) throws IOException;
      protected abstract void send(DatagramPacket p) throws IOException;
      protected abstract void setTTL(byte ttl) throws IOException;
}

Java in a Nutshell Online Quick Reference for Java 1.1
Created by David Flanagan. Copyright © 1997 by O'Reilly & Associates.