263264265266267268269270271272273
} // instantiate an appropiate HTTP header parser depending on whether the data are a HTTP request or a response if ( isRequest ) { httpHeaderParser = new HttpResponseParser( headerBuf ); } else { httpHeaderParser = new HttpRequestParser( headerBuf ); }