01: package vicazh.hyperpool.stream.net.socks;
02:
03: import java.io.*;
04: import vicazh.hyperpool.stream.*;
05:
06: class SwitchConnection extends Connection {
07: SwitchConnection(Element element) {
08: super (element);
09: }
10:
11: public void setClient(OutputStream outputstream) throws IOException {
12: super .setClient(new SwitchStream(this));
13: }
14:
15: }
|