GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
Net::DNS::RR::SRV::Helper(3) User Contributed Perl Documentation Net::DNS::RR::SRV::Helper(3)

Net::DNS::RR::SRV::Helper - Orders SRV records by priority and weight for Net::DNS.

Version 0.0.0

    use Net::DNS;
    use Net::DNS::RR::SRV::Helper;
    use Data::Dumper;
    
    my $query=$res->search("_ldap._tcp.foo.bar", SRV);
    my @answers=$query->answer;

    my @ordered=SRVorder(\@answers);
    if(!defined( $ordered[0] )){
        print "No usable records were found.\n";
    }else{
        print Dumper(\@ordered);
    }

SRVorder

This takes the returned answer array containing Net::DNS::RR::SRV objects and processes them into a new easy to use array of hashes ordered by priority and weight.

One item is taken and that is the array returned from the answers method.

Upon a error or no records being present, undef is returned.

The returned value is a array.

Each item of the array is a hash.

The keys listed below are used for the hash.

This is the server to use.

This is the port to use for this server.

This is the priority of this server.

This is the weight of this server.

Zane C. Bowers, "<vvelox at vvelox.net>"

Please report any bugs or feature requests to "bug-net-dns-rr-srv-helper at rt.cpan.org", or through the web interface at <http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Net-DNS-RR-SRV-Helper>. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

You can find documentation for this module with the perldoc command.

    perldoc Net::DNS::RR::SRV::Helper

You can also look for information at:

  • RT: CPAN's request tracker

    <http://rt.cpan.org/NoAuth/Bugs.html?Dist=Net-DNS-RR-SRV-Helper>

  • AnnoCPAN: Annotated CPAN documentation

    <http://annocpan.org/dist/Net-DNS-RR-SRV-Helper>

  • CPAN Ratings

    <http://cpanratings.perl.org/d/Net-DNS-RR-SRV-Helper>

  • Search CPAN

    <http://search.cpan.org/dist/Net-DNS-RR-SRV-Helper/>

Copyright 2010 Zane C. Bowers, all rights reserved.

This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

2010-02-14 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.