start of new file
[IRC.git] / Robust / src / Benchmarks / Jhttpp2 / BR / Jhttpp2HTTPSession.java
1 /* Written and copyright 2001-2003 Benjamin Kohl.
2  * Distributed under the GNU General Public License; see the README file.
3  * This code comes with NO WARRANTY.
4  */
5
6 import java.net.Socket;
7 import java.net.InetAddress;
8 import java.net.UnknownHostException;
9
10 import java.io.BufferedOutputStream;
11 import java.io.BufferedInputStream;
12 import java.io.DataInputStream;
13 import java.io.IOException;
14 import java.io.File;
15 import java.io.FileInputStream;
16
17
18 /**
19         One HTTP connection
20         @file Jhttpp2HTTPSession.java
21         @author Benjamin Kohl
22 */
23 public class Jhttpp2HTTPSession {
24     String request;
25     flag more;
26     flag first;
27     
28     public Jhttpp2HTTPSession() {
29     }
30 }
31