()
| 133 | } |
| 134 | |
| 135 | private void initStreams() throws IOException { |
| 136 | traceInput = new TraceInputStream(socket.getInputStream(), traceLogger); |
| 137 | traceInput.setQuote(quote); |
| 138 | input = new ResponseInputStream(traceInput); |
| 139 | |
| 140 | traceOutput = |
| 141 | new TraceOutputStream(socket.getOutputStream(), traceLogger); |
| 142 | traceOutput.setQuote(quote); |
| 143 | output = new DataOutputStream(new BufferedOutputStream(traceOutput)); |
| 144 | } |
| 145 | |
| 146 | /** |
| 147 | * Compute the tag prefix to be used for this connection. |
no test coverage detected