NAME

Win32::WindowsMedia::Information - The information module for WindowsMedia

VERSION

Version 0.02

SYNOPSIS

use Win32::WindowsMedia::Information;

FUNCTIONS

Publishing_Point_List

This function returns the publishing points matching the mask specified
into an array.

<mask> can be a regular expression, the following examples have been
tested

       * - All Publishing Points
       mytest - This will return all publishing points that have mytest
                in their name
       ^mytest$ - This will only return the publishing point named
                  mytest

Publishing_Point_List ( $Server_Object, "<mask>" );

Example of Use

my @publishing_point = $Information->Publishing_Point_List( $Server_Object, "*");

The above will return all publishing points defined.

Publishing_Point_Authorization_IPAddress_Get

This function returns the allowed or disallowed ( one might use the word banned )
that are currently configured on the specified publishing point.

You need to specify DisallowIP or AllowIP and a pointer to a hash to return the
configured addresses.

Publishing_Point_Authorization_IPAddress_Get(
                 $Server_Object,
                 "<publishing point name>",
                 "<list to return>",
                 <hash pointer for returned values>);

Example of Use

my %AllowIPList;
my $result = $Information->Publishing_Point_Authorization_IPAddress_Get(
                 $Server_Object,
                 "andrew",
                 "AllowIP",
                 \%AllowIPList);

Publishing_Point_Players_Get

This function returns the currently connected clients to the specified
publishing point specified.

Publishing_Point_Players_Get(
                 $Server_Object,
                 "<publishing point name>",
                 <hash pointer for the returned values>);

Example of Use

my %ConnectedClients;
my $result = $Information->Publishing_Point_Players_Get(
                 $Server_Object,
                 "andrew",
                 \%ConnectedClients);

AUTHOR

Andrew S. Kennedy, <shamrock at cpan.org>

BUGS

Please report any bugs or feature requests to bug-win32-windowsmedia-information at rt.cpan.org, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Win32-WindowsMedia-Provision. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

SUPPORT

ACKNOWLEDGEMENTS

COPYRIGHT & LICENSE

Copyright 2008 Andrew S. Kennedy, all rights reserved.

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

3 POD Errors

The following errors were encountered while parsing the POD:

Around line 208:

=cut found outside a pod block. Skipping to next block.

Around line 227:

'=item' outside of any '=over'

Around line 231:

You forgot a '=back' before '=head1'