*/
public void removeChannel(Channel channel) {
StrestConnectionChannel con = this.connections.remove(channel);
if (con == null)
return;
con.cleanup();
}
public void incoming(Channel channel, HttpRequest request) {
boolean isStrest = StrestUtil.isStrest(request);
// Build the response object.