package RFID::Alien::Reader::TCP; use RFID::Alien::Reader; $VERSION=$RFID::Alien::Reader::VERSION; @ISA = qw(RFID::Alien::Reader RFID::Reader::TCP); # Written by Scott Gifford # Copyright (C) 2004-2006 The Regents of the University of Michigan. # See the file LICENSE included with the distribution for license # information. =head1 NAME RFID::Alien::Reader::TCP - Implement L over a TCP connection =head1 SYNOPSIS This class takes a host and port to connect to, connects to it, and implements the Alien RFID protocol over that connection. It can use the reader's builting TCP service, or a serial-to-Ethernet adapter plugged into the serial port of the reader; I tested it with both. =cut use strict; use warnings; use RFID::Reader::TCP; =head1 DESCRIPTION This class is built on top of L and L. =cut =head2 Constructor =head3 new This constructor accepts all arguments to the constructors for L and L, and passes them along to both constructors. Any other settings are intrepeted as parameters to the L method. =cut =head1 SEE ALSO L, L, L, L. =head1 AUTHOR Scott Gifford Egifford@umich.eduE, Esgifford@suspectclass.comE Copyright (C) 2004-2006 The Regents of the University of Michigan. See the file LICENSE included with the distribution for license information. =cut 1;