private SwitchableInputStream switchableInputStream;
private SwitchableOutputStream switchableOutputStream;
public SwitchableSocket(Socket socket) throws IOException {
this.socket = socket;
switchableInputStream = new SwitchableInputStream(
socket.getInputStream());
switchableOutputStream = new SwitchableOutputStream(
socket.getOutputStream());
}