715716717718719720721722723724725
protected void handleConnectionClose() { SocketLink conn = _conn; if (conn != null) conn.killKeepalive("client Connection: close"); } /** * Matches case insensitively, with the second normalized to lower case. */
16231624162516261627162816291630163116321633
public void killKeepalive(String reason) { SocketLink conn = _conn; if (conn != null) { conn.killKeepalive(reason); } } /** * Returns true if the keepalive is active.
709710711712713714715716717718719
protected void handleConnectionClose() { SocketLink conn = _conn; if (conn != null) conn.killKeepalive(); } /** * Matches case insensitively, with the second normalized to lower case. */
16171618161916201621162216231624162516261627
public void killKeepalive() { SocketLink conn = _conn; if (conn != null) conn.killKeepalive(); /* ConnectionController controller = _conn.getController(); if (controller != null) controller.close();