Class java.net.DatagramSocketImpl (1.1)


public abstract class DatagramSocketImpl extends Object implements SocketOptions {
  // 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 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;
}