protected void initializeStreams() throws IOException{
BufferedInputStream buffIn = new BufferedInputStream(socket.getInputStream(),8192);
this.dataIn = new DataInputStream(buffIn);
TcpBufferedOutputStream buffOut = new TcpBufferedOutputStream(socket.getOutputStream(),8192);
this.dataOut = new DataOutputStream(buffOut);
fireStatusEvent(new TransportStatusEvent(this,TransportStatusEvent.CONNECTED));
}