⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 servertest.java

📁 ATLS原代码库,实现的很不错 ATLS原代码库,实现的很不错
💻 JAVA
字号:
/* * Copyright (c) 2002 by The Regents of the University of California.  * All rights reserved. * * Permission to use, copy, modify, and distribute this software and its * documentation for any purpose, without fee, and without written agreement is * hereby granted, provided that the above copyright notice and the following * two paragraphs appear in all copies of this software. * * IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR * DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT * OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY OF * CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * * THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES, * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY * AND FITNESS FOR A PARTICULAR PURPOSE.  THE SOFTWARE PROVIDED HEREUNDER IS * ON AN "AS IS" BASIS, AND THE UNIVERSITY OF CALIFORNIA HAS NO OBLIGATION TO * PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. * * Author: Dennis Chi <denchi@uclink4.berkeley.edu>  * */import seda.sandStorm.api.*;import seda.sandStorm.core.*;import seda.sandStorm.lib.aTLS.*;import seda.sandStorm.lib.aTLS.protocol.*;import seda.sandStorm.lib.aSocket.*;import seda.sandStorm.main.*;import seda.sandStorm.lib.http.*;import java.util.*;import java.io.*;import java.net.*;public class serverTest implements EventHandlerIF {    private static final boolean DEBUG = true;    private static final int PORT = 8096;    private SinkIF mysink;    public void init(ConfigDataIF config) throws Exception {	if (DEBUG) System.err.println ("serverTest: inside init()");	mysink = config.getStage().getSink();	System.err.println("serverTest: Started");	aTLSServerSocket server = new aTLSServerSocket (config.getManager(), mysink, PORT);    }    public void destroy() {    }    public void handleEvent(QueueElementIF item) {	if (DEBUG) System.err.println("SERVER TEST GOT QEL: "+item);		if (item instanceof aTLSConnection) {	    System.err.println ("serverTest: received a connection");	    ((aTLSConnection) item).startReader(mysink);	}	else if (item instanceof ATcpInPacket) {	    readData ((ATcpInPacket) item);	}	else if (item instanceof SinkClosedEvent) {	    if (DEBUG) System.err.println ("serverTest: CONNECTION HAS BEEN CLOSED");	}    }    public void handleEvents(QueueElementIF items[]) {	if (DEBUG) System.err.println("GOT "+items.length+" ELEMENTS");	for(int i=0; i<items.length; i++)	    handleEvent(items[i]);    }    // This is just to test the encryption/decryption of sending actual data between client/server    public void readData (ATcpInPacket req) {	byte[] data = req.getBytes();	String request = new String (data);	System.err.println ("Server just received a request: " + request);		String response = "<html><body bgcolor=\"white\"><h3>aTLS Web Server Response</h3><p><b>Hello, this is the aTLS test web server.</b><br><p>Your complete request was as follows: <p><pre> " + request + "</pre><p>And, by the way, your request (and this reply) were encrypted using TLS! Glad to be of service today.</body></html>\r\n\r\n";		String x = "HTTP/1.1 200 OK\n" + "Server: Sandstorm (unknown version)\n" + "Content-Type: text/html\n" + "Content-Length: 30\r\n\r\n";	req.getConnection().enqueue_lossy(new BufferElement (x.getBytes()));		req.getConnection().enqueue_lossy(new BufferElement (response.getBytes()));	for (int j = 0; j < 3; j++) {	    System.err.println ();	}    }    }

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -