logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Net::Time - time and daytime network client interface

Author

Graham Barr <gbarr@pobox.com <mailto:gbarr@pobox.com>>. Steve Hay <shay@cpan.org <mailto:shay@cpan.org>> is now maintaining libnet as of version 1.22_02.

Date

20 March 2023

Description

"Net::Time" provides subroutines that obtain the time on a remote machine. Functions "inet_time([$host[, $protocol[, $timeout]]])" Obtain the time on $host, or some default host if $host is not given or not defined, using the protocol as defined in RFC868. The optional argument $protocol should define the protocol to use, either "tcp" or "udp". The result will be a time value in the same units as returned by time() or undef upon failure. "inet_daytime([$host[, $protocol[, $timeout]]])" Obtain the time on $host, or some default host if $host is not given or not defined, using the protocol as defined in RFC867. The optional argument $protocol should define the protocol to use, either "tcp" or "udp". The result will be an ASCII string or undef upon failure.

Exports

The following symbols are, or can be, exported by this module: Default Exports None. Optional Exports "inet_time", "inet_daytime". Export Tags None.

History

See the Changes file. perl v5.40.1 2025-07-27 Net::Time(3perl)

Known Bugs

None.

Licence

This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself, i.e. under the terms of either the GNU General Public License or the Artistic License, as specified in the LICENCE file.

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');

Version

Version 3.15

See Also