
Net::NSS::SSL::LWPCompat - Wrapper for Net::NSS::SSL to make it LWP compatible

# Using NSS for SSL connections from LWP
use LWP;
use Crypt::NSS config_dir => "$ENV{HOME}/.netscape";
use Net::HTTPS;
local @Net::HTTPS::ISA = qw(Net::NSS::SSL::LWPCompat Net::HTTP::Methods);
my $content = get("https://secure.mycompany.com");

Checks if there is data available to be read.
Configures the socket, does nothing as this is done in the constructor.
Compat method that does nothing.