| Aw documentation | Contained in the Aw distribution. |
Aw::ConnectionDescriptor - ActiveWorks Connection Descriptor Module.
require Aw::ConnectionDescriptor;
my $cd = new Aw::ConnectionDescriptor;
Enhanced interface for the Aw.xs Connection Descriptor methods.
Daniel Yacob Mekonnen, Yacob@wMUsers.Com
perl(1). Aw(3).
| Aw documentation | Contained in the Aw distribution. |
package Aw::ConnectionDescriptor; BEGIN { use strict; use vars qw($VERSION); $VERSION = '0.2'; } sub getSSLCertificate { my $result = Aw::ConnectionDescriptor::getSSLCertificateRef ( @_ ); ( wantarray ) ? @{ $result } : $result ; } sub getSSLCertificateDns { my $result = Aw::ConnectionDescriptor::getSSLCertificateDnsRef ( @_ ); ( wantarray ) ? @{ $result } : $result ; } sub getSSLRootDns { my $result = Aw::ConnectionDescriptor::getSSLRootDnsRef ( @_ ); ( wantarray ) ? @{ $result } : $result ; } ######################################################### # Do not change this, Do not put anything below this. # File must return "true" value at termination 1; ########################################################## __END__