Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Source code: com/act365/net/UDPDatagramSocketImpl.java


1   /*
2     * JSocket Wrench
3     * 
4     * Copyright (C) act365.com October 2003
5     * 
6     * Web site: http://www.act365.com/wrench
7     * E-mail: developers@act365.com
8     * 
9     * The JSocket Wrench library adds support for low-level Internet protocols
10    * to the Java programming language.
11    * 
12    * This program is free software; you can redistribute it and/or modify it 
13    * under the terms of the GNU General Public License as published by the Free 
14    * Software Foundation; either version 2 of the License, or (at your option) 
15    * any later version.
16    *  
17    * This program is distributed in the hope that it will be useful, 
18    * but WITHOUT ANY WARRANTY; without even the implied warranty of 
19    * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General 
20    * Public License for more details.
21    * 
22    * You should have received a copy of the GNU General Public License along with 
23    * this program; if not, write to the Free Software Foundation, Inc., 
24    * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
25    */
26  
27  package com.act365.net;
28  
29  import java.net.*;
30  
31  import com.act365.net.SocketConstants ;
32  
33  /**
34   * A socket class for the transmission of UDP packets.
35   * The operating system will write the necessary IP headers. 
36   */
37  
38  public class UDPDatagramSocketImpl extends GeneralDatagramSocketImpl {
39  
40    /**
41     Creates a new unconnected UDP socket.
42    */
43  
44    public void create () throws SocketException {
45      create( SocketConstants.SOCK_DGRAM , SocketConstants.IPPROTO_IP , false );
46    }
47  };
48  
49