The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Win32::Girder::IEvent::Client - Perl API to the Win32 Girder Internet Events Client

SYNOPSIS

        use Win32::Girder::IEvent::Client;
        my $gc = Win32::Girder::IEvent::Client->new(
                PeerHost => 'htpc.my.domain:1024'
        );
        $gc->send(42) || die "Can't send event";

DESCRIPTION

Girder is a Windows automation tool, originally designed to receive commands from IR remote controls. The client is used for sending 'Event Strings' to a Girder instance or a compatible server.

METHODS

my $gc = Win32::Girder::IEvent::Client->new([ARGS]);

Create a new client object. The client object inherits the IO::Socket::INET object and so the constructor can take all the IO::Socket::INET methods. However the only relavent ones are:

( PeerAddr => $addr ) or ( PeerHost => $addr )

The servername (and possibly port) of the server to connect to. Defaults to "localhost:1024" if not specified.

( PeerPort => $port )

The port on which the server is running. Defaults to 1024 if not specified or not part of the server name.

Girder specific parameters are:

( PassWord => $mypass )

The password needed for access to the server. Defaults to 'NewDefPWD'. Note that passwords are NOT sent plain text accross the wire.

$gc->send("event1" [,"event2" ...]);

Send an event, or several events to the server. Returns the number of events sent.

$gc->close();

Politly shut down the connection.

AUTHOR

This module is Copyright (c) 2002 Gavin Brock gbrock@cpan.org. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

The Girder application is Copyright (c) Ron Bessems. Please see the 'copying.txt' that came with your copy of Girder or visit http://www.girder.nl for contact information.

SEE ALSO

The Girder home page http://www.girder.nl

Win32::Girder::IEvent::Server.

IO::Socket::INET.