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