104105106107108109110111112113114
Socket s = ep.createSocket(); if (s instanceof HttpOutboundSocket) { conn = new HttpConnection(s, ep); } else { conn = new TcpConnection(s, ep); } synchronized (connsTable) { Set conns = (Set) connsTable.get(ep);
102103104105106107108109110111112