Net::Time(3p) Perl Programmers Reference Guide Net::Time(3p) #
Net::Time(3p) Perl Programmers Reference Guide Net::Time(3p)
NNAAMMEE #
Net::Time - time and daytime network client interface
SSYYNNOOPPSSIISS #
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');
DDEESSCCRRIIPPTTIIOONN #
"Net::Time" provides subroutines that obtain the time on a remote
machine.
FFuunnccttiioonnss “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 ttiimmee(()) or _u_n_d_e_f 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 _u_n_d_e_f upon failure.
EEXXPPOORRTTSS #
The following symbols are, or can be, exported by this module:
Default Exports
_N_o_n_e.
Optional Exports
"inet_time", "inet_daytime".
Export Tags
_N_o_n_e.
KKNNOOWWNN BBUUGGSS #
_N_o_n_e.
AAUUTTHHOORR #
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.
CCOOPPYYRRIIGGHHTT #
Copyright (C) 1995-2004 Graham Barr. All rights reserved.
Copyright (C) 2014, 2020 Steve Hay. All rights reserved.
LLIICCEENNCCEE #
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
_L_I_C_E_N_C_E file.
VVEERRSSIIOONN #
Version 3.14
DDAATTEE #
23 Dec 2020
HHIISSTTOORRYY #
See the _C_h_a_n_g_e_s file.
perl v5.36.3 2023-02-15 Net::Time(3p)