protected void accept() throws IOException {
// Set up HTTP connection
Socket socket = servicedSocket.accept();
acceptedConnections.incrementAndGet();
DefaultHttpServerConnection conn =
new DefaultHttpServerConnection();
conn.bind(socket, serverParams);
// Set up the HTTP service
HttpService httpService = new HttpService(
httpProcessor,
reuseStrategy,