Lines Matching +full:config +full:- +full:array
1 # Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved.
17 @EXPORT = qw(alldisabled anydisabled disabled config available_protocols
22 OpenSSL::Test::Utils - test utility functions
33 config("fips");
55 =item B<alldisabled ARRAY>
57 =item B<anydisabled ARRAY>
59 In an array context returns an array with each element set to 1 if the
63 ARRAY are disabled, while anydisabled returns 1 if any of them are
66 =item B<config STRING>
68 Returns an item from the %config hash in \$TOP/configdata.pm.
82 our %config;
93 %config = %configdata::config;
159 sub config { subroutine
161 return $config{$_[0]};
165 my $have_IPv4 = -1;
166 my $have_IPv6 = -1;
173 my $s = IO::Socket::IP->new(
179 $s->close();
187 my $s = IO::Socket::INET6->new(
193 $s->close();
201 my $s = IO::Socket::INET->new(
207 $s->close();