java.net
Class DatagramSocket

java.lang.Object
  |
  +--java.net.DatagramSocket
Direct Known Subclasses:
MulticastSocket

public class DatagramSocket
extends Object

Untamed:


Field Summary
private  boolean bound
           
private  boolean closed
           
private  Object closeLock
           
(package private)  boolean connected
           
(package private)  InetAddress connectedAddress
           
(package private)  int connectedPort
           
private  boolean created
          Various states of this socket.
(package private) static DatagramSocketImplFactory factory
          The factory for all datagram sockets.
(package private)  DatagramSocketImpl impl
           
(package private) static Class implClass
           
(package private)  boolean oldImpl
          Are we using an older DatagramSocketImpl?
 
Constructor Summary
  DatagramSocket()
          Enabled: Constructs a datagram socket and binds it to any available port on the local host machine.
protected DatagramSocket(DatagramSocketImpl impl)
          Creates an unbound datagram socket with the specified DatagramSocketImpl.
  DatagramSocket(int port)
          Enabled: Constructs a datagram socket and binds it to the specified port on the local host machine.
  DatagramSocket(int port, InetAddress laddr)
          Enabled: Creates a datagram socket, bound to the specified local address.
  DatagramSocket(SocketAddress bindaddr)
          Enabled: Creates a datagram socket, bound to the specified local socket address.
 
Method Summary
 void bind(SocketAddress addr)
          Enabled: Binds this DatagramSocket to a specific address & port.
private  void checkOldImpl()
           
 void close()
          Enabled: Closes this datagram socket.
 void connect(InetAddress address, int port)
          Enabled: Connects the socket to a remote address for this socket.
 void connect(SocketAddress addr)
          Enabled: Connects this socket to a remote socket address (IP address + port number).
private  void connectInternal(InetAddress address, int port)
          Connects this socket to a remote socket address (IP address + port number).
(package private)  void createImpl()
           
 void disconnect()
          Enabled: Disconnects the socket.
 boolean getBroadcast()
          Enabled: Tests if SO_BROADCAST is enabled.
 java.nio.channels.DatagramChannel getChannel()
          Enabled: Returns the unique java.nio.channels.DatagramChannel object associated with this datagram socket, if any.
(package private)  DatagramSocketImpl getImpl()
          Get the DatagramSocketImpl attached to this socket, creating it if necessary.
 InetAddress getInetAddress()
          Enabled: Returns the address to which this socket is connected.
 InetAddress getLocalAddress()
          Enabled: Gets the local address to which the socket is bound.
 int getLocalPort()
          Enabled: Returns the port number on the local host to which this socket is bound.
 SocketAddress getLocalSocketAddress()
          Enabled: Returns the address of the endpoint this socket is bound to, or null if it is not bound yet.
 int getPort()
          Enabled: Returns the port for this socket.
 int getReceiveBufferSize()
          Enabled: Get value of the SO_RCVBUF option for this DatagramSocket, that is the buffer size used by the platform for input on this DatagramSocket.
 SocketAddress getRemoteSocketAddress()
          Enabled: Returns the address of the endpoint this socket is connected to, or null if it is unconnected.
 boolean getReuseAddress()
          Enabled: Tests if SO_REUSEADDR is enabled.
 int getSendBufferSize()
          Enabled: Get value of the SO_SNDBUF option for this DatagramSocket, that is the buffer size used by the platform for output on this DatagramSocket.
 int getSoTimeout()
          Enabled: Retrive setting for SO_TIMEOUT.
 int getTrafficClass()
          Enabled: Gets traffic class or type-of-service in the IP datagram header for packets sent from this DatagramSocket.
 boolean isBound()
          Enabled: Returns the binding state of the socket.
 boolean isClosed()
          Enabled: Returns wether the socket is closed or not.
 boolean isConnected()
          Enabled: Returns the connection state of the socket.
 void receive(DatagramPacket p)
          Enabled: Receives a datagram packet from this socket.
 void send(DatagramPacket p)
          Enabled: Sends a datagram packet from this socket.
 void setBroadcast(boolean on)
          Enabled: Enable/disable SO_BROADCAST.
static void setDatagramSocketImplFactory(DatagramSocketImplFactory fac)
          Enabled: Sets the datagram socket implementation factory for the application.
 void setReceiveBufferSize(int size)
          Enabled: Sets the SO_RCVBUF option to the specified value for this DatagramSocket.
 void setReuseAddress(boolean on)
          Enabled: Enable/disable the SO_REUSEADDR socket option.
 void setSendBufferSize(int size)
          Enabled: Sets the SO_SNDBUF option to the specified value for this DatagramSocket.
 void setSoTimeout(int timeout)
          Enabled: Enable/disable SO_TIMEOUT with the specified timeout, in milliseconds.
 void setTrafficClass(int tc)
          Enabled: Sets traffic class or type-of-service octet in the IP datagram header for datagrams sent from this DatagramSocket.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

created

private boolean created
Various states of this socket.


bound

private boolean bound

closed

private boolean closed

closeLock

private Object closeLock

impl

DatagramSocketImpl impl

oldImpl

boolean oldImpl
Are we using an older DatagramSocketImpl?


connected

boolean connected

connectedAddress

InetAddress connectedAddress

connectedPort

int connectedPort

implClass

static Class implClass

factory

static DatagramSocketImplFactory factory
The factory for all datagram sockets.

Constructor Detail

DatagramSocket

public DatagramSocket()
               throws SocketException
Enabled: Constructs a datagram socket and binds it to any available port on the local host machine. The socket will be bound to the wildcard address, an IP address chosen by the kernel.

If there is a security manager, its checkListen method is first called with 0 as its argument to ensure the operation is allowed. This could result in a SecurityException.

See Also:
SecurityManager.checkListen(int)

DatagramSocket

protected DatagramSocket(DatagramSocketImpl impl)
Creates an unbound datagram socket with the specified DatagramSocketImpl.

Parameters:
impl - an instance of a DatagramSocketImpl the subclass wishes to use on the DatagramSocket.
Since:
1.4

DatagramSocket

public DatagramSocket(SocketAddress bindaddr)
               throws SocketException
Enabled: Creates a datagram socket, bound to the specified local socket address.

If, if the address is null, creates an unbound socket.

If there is a security manager, its checkListen method is first called with the port from the socket address as its argument to ensure the operation is allowed. This could result in a SecurityException.

Parameters:
bindaddr - local socket address to bind, or null for an unbound socket.
Since:
1.4
See Also:
SecurityManager.checkListen(int)

DatagramSocket

public DatagramSocket(int port)
               throws SocketException
Enabled: Constructs a datagram socket and binds it to the specified port on the local host machine. The socket will be bound to the wildcard address, an IP address chosen by the kernel.

If there is a security manager, its checkListen method is first called with the port argument as its argument to ensure the operation is allowed. This could result in a SecurityException.

Parameters:
port - port to use.
See Also:
SecurityManager.checkListen(int)

DatagramSocket

public DatagramSocket(int port,
                      InetAddress laddr)
               throws SocketException
Enabled: Creates a datagram socket, bound to the specified local address. The local port must be between 0 and 65535 inclusive. If the IP address is 0.0.0.0, the socket will be bound to the wildcard address, an IP address chosen by the kernel.

If there is a security manager, its checkListen method is first called with the port argument as its argument to ensure the operation is allowed. This could result in a SecurityException.

Parameters:
port - local port to use
laddr - local address to bind
Since:
JDK1.1
See Also:
SecurityManager.checkListen(int)
Method Detail

connectInternal

private void connectInternal(InetAddress address,
                             int port)
                      throws SocketException
Connects this socket to a remote socket address (IP address + port number).

Throws:
SocketException - if the connect fails.

checkOldImpl

private void checkOldImpl()

createImpl

void createImpl()
          throws SocketException
SocketException

getImpl

DatagramSocketImpl getImpl()
                     throws SocketException
Get the DatagramSocketImpl attached to this socket, creating it if necessary.

Returns:
the DatagramSocketImpl attached to that DatagramSocket
Throws:
SocketException - if creation fails.
Since:
1.4

bind

public void bind(SocketAddress addr)
          throws SocketException
Enabled: Binds this DatagramSocket to a specific address & port.

If the address is null, then the system will pick up an ephemeral port and a valid local address to bind the socket.

Parameters:
addr - The address & port to bind to.
Throws:
SocketException - if any error happens during the bind, or if the socket is already bound.
SecurityException - if a security manager exists and its checkListen method doesn't allow the operation.
IllegalArgumentException - if addr is a SocketAddress subclass not supported by this socket.
Since:
1.4

connect

public void connect(InetAddress address,
                    int port)
Enabled: Connects the socket to a remote address for this socket. When a socket is connected to a remote address, packets may only be sent to or received from that address. By default a datagram socket is not connected.

If the remote destination to which the socket is connected does not exist, or is otherwise unreachable, and if an ICMP destination unreachable packet has been received for that address, then a subsequent call to send or receive may throw a PortUnreachableException. Note, there is no guarantee that the exception will be thrown.

A caller's permission to send and receive datagrams to a given host and port are checked at connect time. When a socket is connected, receive and send will not perform any security checks on incoming and outgoing packets, other than matching the packet's and the socket's address and port. On a send operation, if the packet's address is set and the packet's address and the socket's address do not match, an IllegalArgumentException will be thrown. A socket connected to a multicast address may only be used to send packets.

Parameters:
address - the remote address for the socket
port - the remote port for the socket.
See Also:
disconnect(), send(java.net.DatagramPacket), receive(java.net.DatagramPacket)

connect

public void connect(SocketAddress addr)
             throws SocketException
Enabled: Connects this socket to a remote socket address (IP address + port number).

Parameters:
addr - The remote address.
Throws:
SocketException - if the connect fails
IllegalArgumentException - if addr is null or addr is a SocketAddress subclass not supported by this socket
Since:
1.4
See Also:
connect(java.net.InetAddress, int)

disconnect

public void disconnect()
Enabled: Disconnects the socket. This does nothing if the socket is not connected.

See Also:
connect(java.net.InetAddress, int)

isBound

public boolean isBound()
Enabled: Returns the binding state of the socket.

Returns:
true if the socket succesfuly bound to an address
Since:
1.4

isConnected

public boolean isConnected()
Enabled: Returns the connection state of the socket.

Returns:
true if the socket succesfuly connected to a server
Since:
1.4

getInetAddress

public InetAddress getInetAddress()
Enabled: Returns the address to which this socket is connected. Returns null if the socket is not connected.

Returns:
the address to which this socket is connected.

getPort

public int getPort()
Enabled: Returns the port for this socket. Returns -1 if the socket is not connected.

Returns:
the port to which this socket is connected.

getRemoteSocketAddress

public SocketAddress getRemoteSocketAddress()
Enabled: Returns the address of the endpoint this socket is connected to, or null if it is unconnected.

Returns:
a SocketAddress reprensenting the remote endpoint of this socket, or null if it is not connected yet.
Since:
1.4
See Also:
getInetAddress(), getPort(), connect(SocketAddress)

getLocalSocketAddress

public SocketAddress getLocalSocketAddress()
Enabled: Returns the address of the endpoint this socket is bound to, or null if it is not bound yet.

Returns:
a SocketAddress representing the local endpoint of this socket, or null if it is not bound yet.
Since:
1.4
See Also:
getLocalAddress(), getLocalPort(), bind(SocketAddress)

send

public void send(DatagramPacket p)
          throws IOException
Enabled: Sends a datagram packet from this socket. The DatagramPacket includes information indicating the data to be sent, its length, the IP address of the remote host, and the port number on the remote host.

If there is a security manager, and the socket is not currently connected to a remote address, this method first performs some security checks. First, if p.getAddress().isMulticastAddress() is true, this method calls the security manager's checkMulticast method with p.getAddress() as its argument. If the evaluation of that expression is false, this method instead calls the security manager's checkConnect method with arguments p.getAddress().getHostAddress() and p.getPort(). Each call to a security manager method could result in a SecurityException if the operation is not allowed.

Parameters:
p - the DatagramPacket to be sent.
IOException
See Also:
java.net.DatagramPacket, SecurityManager.checkMulticast(InetAddress), SecurityManager.checkConnect(java.lang.String, int)

receive

public void receive(DatagramPacket p)
             throws IOException
Enabled: Receives a datagram packet from this socket. When this method returns, the DatagramPacket's buffer is filled with the data received. The datagram packet also contains the sender's IP address, and the port number on the sender's machine.

This method blocks until a datagram is received. The length field of the datagram packet object contains the length of the received message. If the message is longer than the packet's length, the message is truncated.

If there is a security manager, a packet cannot be received if the security manager's checkAccept method does not allow it.

Parameters:
p - the DatagramPacket into which to place the incoming data.
IOException
See Also:
java.net.DatagramPacket, java.net.DatagramSocket

getLocalAddress

public InetAddress getLocalAddress()
Enabled: Gets the local address to which the socket is bound.

If there is a security manager, its checkConnect method is first called with the host address and -1 as its arguments to see if the operation is allowed.

Returns:
the local address to which the socket is bound, or an InetAddress representing any local address if either the socket is not bound, or the security manager checkConnect method does not allow the operation
Since:
1.1
See Also:
SecurityManager.checkConnect(java.lang.String, int)

getLocalPort

public int getLocalPort()
Enabled: Returns the port number on the local host to which this socket is bound.

Returns:
the port number on the local host to which this socket is bound.

setSoTimeout

public void setSoTimeout(int timeout)
                  throws SocketException
Enabled: Enable/disable SO_TIMEOUT with the specified timeout, in milliseconds. With this option set to a non-zero timeout, a call to receive() for this DatagramSocket will block for only this amount of time. If the timeout expires, a java.net.SocketTimeoutException is raised, though the DatagramSocket is still valid. The option must be enabled prior to entering the blocking operation to have effect. The timeout must be > 0. A timeout of zero is interpreted as an infinite timeout.

Parameters:
timeout - the specified timeout in milliseconds.
Throws:
SocketException - if there is an error in the underlying protocol, such as an UDP error.
Since:
JDK1.1
See Also:
getSoTimeout()

getSoTimeout

public int getSoTimeout()
                 throws SocketException
Enabled: Retrive setting for SO_TIMEOUT. 0 returns implies that the option is disabled (i.e., timeout of infinity).

Returns:
the setting for SO_TIMEOUT
Throws:
SocketException - if there is an error in the underlying protocol, such as an UDP error.
Since:
JDK1.1
See Also:
setSoTimeout(int)

setSendBufferSize

public void setSendBufferSize(int size)
                       throws SocketException
Enabled: Sets the SO_SNDBUF option to the specified value for this DatagramSocket. The SO_SNDBUF option is used by the network implementation as a hint to size the underlying network I/O buffers. The SO_SNDBUF setting may also be used by the network implementation to determine the maximum size of the packet that can be sent on this socket.

As SO_SNDBUF is a hint, applications that want to verify what size the buffer is should call getSendBufferSize().

Increasing the buffer size may allow multiple outgoing packets to be queued by the network implementation when the send rate is high.

Note: If #send() is used to send a DatagramPacket that is larger than the setting of SO_SNDBUF then it is implementation specific if the packet is sent or discarded.

Parameters:
size - the size to which to set the send buffer size. This value must be greater than 0.
SocketException
See Also:
getSendBufferSize()

getSendBufferSize

public int getSendBufferSize()
                      throws SocketException
Enabled: Get value of the SO_SNDBUF option for this DatagramSocket, that is the buffer size used by the platform for output on this DatagramSocket.

Returns:
the value of the SO_SNDBUF option for this DatagramSocket
SocketException
See Also:
setSendBufferSize(int)

setReceiveBufferSize

public void setReceiveBufferSize(int size)
                          throws SocketException
Enabled: Sets the SO_RCVBUF option to the specified value for this DatagramSocket. The SO_RCVBUF option is used by the the network implementation as a hint to size the underlying network I/O buffers. The SO_RCVBUF setting may also be used by the network implementation to determine the maximum size of the packet that can be received on this socket.

Because SO_RCVBUF is a hint, applications that want to verify what size the buffers were set to should call getReceiveBufferSize().

Increasing SO_RCVBUF may allow the network implementation to buffer multiple packets when packets arrive faster than are being received using #receive().

Note: It is implementation specific if a packet larger than SO_RCVBUF can be received.

Parameters:
size - the size to which to set the receive buffer size. This value must be greater than 0.
SocketException
See Also:
getReceiveBufferSize()

getReceiveBufferSize

public int getReceiveBufferSize()
                         throws SocketException
Enabled: Get value of the SO_RCVBUF option for this DatagramSocket, that is the buffer size used by the platform for input on this DatagramSocket.

Returns:
the value of the SO_RCVBUF option for this DatagramSocket
SocketException
See Also:
setReceiveBufferSize(int)

setReuseAddress

public void setReuseAddress(boolean on)
                     throws SocketException
Enabled: Enable/disable the SO_REUSEADDR socket option.

For UDP sockets it may be necessary to bind more than one socket to the same socket address. This is typically for the purpose of receiving multicast packets (See #java.net.MulticastSocket). The SO_REUSEADDR socket option allows multiple sockets to be bound to the same socket address if the SO_REUSEADDR socket option is enabled prior to binding the socket using bind(SocketAddress).

When a DatagramSocket is created the initial setting of SO_REUSEADDR is disabled.

The behaviour when SO_REUSEADDR is enabled or disabled after a socket is bound (See isBound()) is not defined.

Parameters:
on - whether to enable or disable the
SocketException
Since:
1.4
See Also:
getReuseAddress(), bind(SocketAddress), isBound(), isClosed()

getReuseAddress

public boolean getReuseAddress()
                        throws SocketException
Enabled: Tests if SO_REUSEADDR is enabled.

Returns:
a boolean indicating whether or not SO_REUSEADDR is enabled.
SocketException
Since:
1.4
See Also:
setReuseAddress(boolean)

setBroadcast

public void setBroadcast(boolean on)
                  throws SocketException
Enabled: Enable/disable SO_BROADCAST.

Parameters:
on - whether or not to have broadcast turned on.
SocketException
Since:
1.4
See Also:
getBroadcast()

getBroadcast

public boolean getBroadcast()
                     throws SocketException
Enabled: Tests if SO_BROADCAST is enabled.

Returns:
a boolean indicating whether or not SO_BROADCAST is enabled.
SocketException
Since:
1.4
See Also:
setBroadcast(boolean)

setTrafficClass

public void setTrafficClass(int tc)
                     throws SocketException
Enabled: Sets traffic class or type-of-service octet in the IP datagram header for datagrams sent from this DatagramSocket. As the underlying network implementation may ignore this value applications should consider it a hint.

The tc must be in the range 0 <= tc <= 255 or an IllegalArgumentException will be thrown.

Notes:

for Internet Protocol v4 the value consists of an octet with precedence and TOS fields as detailed in RFC 1349. The TOS field is bitset created by bitwise-or'ing values such the following :-

  • IPTOS_LOWCOST (0x02)
  • IPTOS_RELIABILITY (0x04)
  • IPTOS_THROUGHPUT (0x08)
  • IPTOS_LOWDELAY (0x10)
The last low order bit is always ignored as this corresponds to the MBZ (must be zero) bit.

Setting bits in the precedence field may result in a SocketException indicating that the operation is not permitted.

for Internet Protocol v6 tc is the value that would be placed into the sin6_flowinfo field of the IP header.

Parameters:
tc - an int value for the bitset.
Throws:
SocketException - if there is an error setting the traffic class or type-of-service
Since:
1.4
See Also:
getTrafficClass()

getTrafficClass

public int getTrafficClass()
                    throws SocketException
Enabled: Gets traffic class or type-of-service in the IP datagram header for packets sent from this DatagramSocket.

As the underlying network implementation may ignore the traffic class or type-of-service set using #setTrafficClass() this method may return a different value than was previously set using the #setTrafficClass() method on this DatagramSocket.

Returns:
the traffic class or type-of-service already set
Throws:
SocketException - if there is an error obtaining the traffic class or type-of-service value.
Since:
1.4
See Also:
setTrafficClass(int)

close

public void close()
Enabled: Closes this datagram socket.

Any thread currently blocked in {#link receive} upon this socket will throw a SocketException.

If this socket has an associated channel then the channel is closed as well.


isClosed

public boolean isClosed()
Enabled: Returns wether the socket is closed or not.

Returns:
true if the socket has been closed
Since:
1.4

getChannel

public java.nio.channels.DatagramChannel getChannel()
Enabled: Returns the unique java.nio.channels.DatagramChannel object associated with this datagram socket, if any.

A datagram socket will have a channel if, and only if, the channel itself was created via the DatagramChannel.open method.

Returns:
the datagram channel associated with this datagram socket, or null if this socket was not created for a channel
Since:
1.4

setDatagramSocketImplFactory

public static void setDatagramSocketImplFactory(DatagramSocketImplFactory fac)
                                         throws IOException
Enabled: Sets the datagram socket implementation factory for the application. The factory can be specified only once.

When an application creates a new datagram socket, the socket implementation factory's createDatagramSocketImpl method is called to create the actual datagram socket implementation.

If there is a security manager, this method first calls the security manager's checkSetFactory method to ensure the operation is allowed. This could result in a SecurityException.

Parameters:
fac - the desired factory.
IOException
See Also:
java.net.DatagramSocketImplFactory#createDatagramSocketImpl(), SecurityManager.checkSetFactory()


comments?