Searched defs:DatagramSocket (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/src/share/classes/java/net/
H A DDatagramSocket.java44 * <p> Where possible, a newly constructed {@code DatagramSocket} has the
47 * broadcast packets a DatagramSocket should be bound to the wildcard address.
49 * a DatagramSocket is bound to a more specific address.
53 * DatagramSocket s = new DatagramSocket(null);
58 * DatagramSocket s = new DatagramSocket(8888);
60 * Both cases will create a DatagramSocket able to receive broadcasts on
69 class DatagramSocket implements java.io.Closeable { class in inherits:java.io.Closeable
79 * The implementation of this DatagramSocket
177 public DatagramSocket() throws SocketException { method in class:DatagramSocket
197 protected DatagramSocket(DatagramSocketImpl impl) { method in class:DatagramSocket
227 public DatagramSocket(SocketAddress bindaddr) throws SocketException { method in class:DatagramSocket
255 public DatagramSocket(int port) throws SocketException { method in class:DatagramSocket
283 public DatagramSocket(int port, InetAddress laddr) throws SocketException { method in class:DatagramSocket
[all...]

Completed in 49 milliseconds