private volatile HttpRequest request;
private volatile HttpResponse response;
public ServerConnState(int bufsize, final IOControl ioControl) {
super();
this.inbuffer = new SharedInputBuffer(bufsize, ioControl);
this.outbuffer = new SharedOutputBuffer(bufsize, ioControl);
this.inputState = READY;
this.outputState = READY;
}