pmonk has asked for the wisdom of the Perl Monks concerning the following question:

Can someone please tell me where i can find IO::Socket::INET? So far I've downloaded IO::Socket::SSL with NET::SSLEAY but I'm having trouble installing the OpenSSL v 0.9.3a. IF someone can tell me an easier way to do this, I will be so HAPPY!!! PMONK

Replies are listed 'Best First'.
Re: Socket Modules
by reyjrar (Hermit) on Aug 29, 2001 at 19:54 UTC
    use IO::Socket; my $socket = IO::Socket::INET->new( PeerAddr => 'www.perlmonks.org', PeerPort => 80, Proto => 'tcp' );
    It a core module exported by IO::Socket.

    -brad..