01: package vicazh.hyperpool.stream.net.http.html;
02:
03: import java.io.*;
04:
05: class AntivirusSession extends Session {
06: AntivirusSession(Connection connection) {
07: super (connection);
08: }
09:
10: public void setServer(OutputStream outputstream) {
11: setServer(new AntivirusStream(this, outputstream));
12: }
13:
14: }
|