Construct a TCP socket with a connection to the given foreign address and port.
Definition at line 245 of file PracticalSocket.cpp.
00246 : CommunicatingSocket(SOCK_STREAM, IPPROTO_TCP) { 00247 connect(foreignAddress, foreignPort); 00248 }