MAN page from Old RedHat 6.X libnet-1.0606-1.i386.rpm
Net::Time
Section: User Contributed Perl Documentation (3)
Updated: perl 5.005, patch 03
Index NAME
Net::Time - time and daytime network client interface
SYNOPSIS
use Net::Time qw(inet_time inet_daytime); print inet_time(); # use default host from Net::Config print inet_time('localhost'); print inet_time('localhost', 'tcp'); print inet_daytime(); # use default host from Net::Config print inet_daytime('localhost'); print inet_daytime('localhost', 'tcp'); DESCRIPTION
Net::Time provides subroutines that obtain the time on a remote machine.
- inet_time ( [HOST [, PROTOCOL [, TIMEOUT]]])
- Obtain the time on HOST, or some default host if HOST is not givenor not defined, using the protocol as defined in RFC868. The optionalargument PROTOCOL should define the protocol to use, either tcp orudp. The result will be a time value in the same units as returnedby time() or undef upon failure.
- inet_daytime ( [HOST [, PROTOCOL [, TIMEOUT]]])
- Obtain the time on HOST, or some default host if HOST is not givenor not defined, using the protocol as defined in RFC867. The optionalargument PROTOCOL should define the protocol to use, either tcp orudp. The result will be an ASCII string or undef upon failure.
AUTHOR
Graham Barr <gbarrAATTpobox.com>
COPYRIGHT
Copyright (c) 1995-1998 Graham Barr. All rights reserved.This program is free software; you can redistribute it and/or modifyit under the same terms as Perl itself.
Index
- NAME
- SYNOPSIS
- DESCRIPTION
- AUTHOR
- COPYRIGHT
This document was created byman2html,using the manual pages.