* Handles data packets from the network.
*/
private void handlePacket(HttpTunnelPacket p) {
int connId = p.getConnId();
HttpTunnelConnection conn;
synchronized (connTable) {
conn = (HttpTunnelConnection) connTable.get(Integer.toString(connId));
}
if (conn == null) {
// TBD : Error - Tell the client ???
return;
}
conn.receivePacket(p, false);
}