List of usage examples for java.net DatagramSocket getTrafficClass
public synchronized int getTrafficClass() throws SocketException
From source file:Main.java
public static void main(String args[]) { try {/* w w w . j a v a 2 s .c o m*/ InetAddress ia = InetAddress.getByName("www.java2s.com"); DatagramSocket ds = new DatagramSocket(); byte buffer[] = "hello".getBytes(); DatagramPacket dp = new DatagramPacket(buffer, buffer.length, ia, 80); // Send the datagram packet ds.send(dp); System.out.println(ds.getTrafficClass()); } catch (Exception e) { e.printStackTrace(); } }