All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.cybergarage.http.HTTPServerThread Maven / Gradle / Ivy

The newest version!
/******************************************************************
*
*	CyberHTTP for Java
*
*	Copyright (C) Satoshi Konno 2002-2003
*
*	File: HTTPServerThread.java
*
*	Revision;
*
*	10/10/03
*		- first revision.
*	
******************************************************************/

package org.cybergarage.http;

import java.net.Socket;

public class HTTPServerThread extends Thread
{
	private HTTPServer httpServer;
	private Socket sock;
	
	////////////////////////////////////////////////
	//	Constructor
	////////////////////////////////////////////////
	
	public HTTPServerThread(HTTPServer httpServer, Socket sock)
	{
        super("Cyber.HTTPServerThread");
		this.httpServer = httpServer;
		this.sock = sock;
	}

	////////////////////////////////////////////////
	//	run	
	////////////////////////////////////////////////

	public void run()
	{
		HTTPSocket httpSock = new HTTPSocket(sock);
		try {
			if (httpSock.open() == false)
				return;
			HTTPRequest httpReq = new HTTPRequest();
			httpReq.setSocket(httpSock);
			while (httpReq.read() == true) {
				httpServer.performRequestListener(httpReq);
				if (httpReq.isKeepAlive() == false)
					break;
			}
		} finally {
			httpSock.close();
		}
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy