1<?php
2
3/*
4	This file is part of ActiveLink PHP NET Package (www.active-link.com).
5	Copyright (c) 2002-2004 by Zurab Davitiani
6
7	You can contact the author of this software via E-mail at
8	hattrick@mailcan.com
9
10	ActiveLink PHP NET Package is free software; you can redistribute it and/or modify
11	it under the terms of the GNU Lesser General Public License as published by
12	the Free Software Foundation; either version 2.1 of the License, or
13	(at your option) any later version.
14
15	ActiveLink PHP NET Package is distributed in the hope that it will be useful,
16	but WITHOUT ANY WARRANTY; without even the implied warranty of
17	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18	GNU Lesser General Public License for more details.
19
20	You should have received a copy of the GNU Lesser General Public License
21	along with ActiveLink PHP NET Package; if not, write to the Free Software
22	Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
23*/
24
25/*
26 *	requires Socket class
27 */
28import("org.active-link.net.Socket");
29
30/**
31  *	HTTPServer class provides functionality to receive HTTP requests and serve responses
32  *	@class		HTTPServer
33  *	@package	org.active-link.net
34  *	@author		Zurab Davitiani
35  *	@version	0.4.0
36  *	@extends	Socket
37  *	@requires	Socket
38  *	@see		Socket
39  */
40
41class HTTPServer extends Socket {
42
43	// protected properties
44    var $defaultServer;
45
46	function HTTPServer () {
47		$this->defaultServer = "ActiveLink NET Object/0.1";
48	}
49
50}
51