01: // ConnectedEvent.java
02: // $Id: ConnectedEvent.java,v 1.4 2000/08/16 21:38:02 ylafon Exp $
03: // (c) COPYRIGHT MIT and INRIA, 1996.
04: // Please first read the full copyright statement in file COPYRIGHT.html
05:
06: package org.w3c.www.protocol.http;
07:
08: import java.io.OutputStream;
09:
10: // FIXME doc
11:
12: public class ConnectedEvent extends RequestEvent {
13: /**
14: * The HTTP <code>CONTINUE</code> packet.
15: */
16: public OutputStream output = null;
17:
18: public ConnectedEvent(HttpServer s, Request req, OutputStream output) {
19: super(s, req, EVT_CONNECTED);
20: this.output = output;
21: }
22: }
|