Cross Reference: time
xref
: /
osnet-11
/
usr
/
src
/
cmd
/
perl
/
5.8.4
/
distrib
/
lib
/
Net
/
demos
/
time
Home
History
Annotate
Line#
Navigate
Download
Search
only in
./
#!/
usr
/
local
/
bin
/
perl
-w
use
blib
;
use
Net
::
Time
qw
(
inet_time
inet_daytime
)
;
print
inet_daytime
(
'localhost'
)
;
print
inet_daytime
(
'localhost'
,
'tcp'
)
;
print
inet_daytime
(
'localhost'
,
'udp'
)
;
print
inet_time
(
'localhost'
)
,
"\n"
;
print
inet_time
(
'localhost'
,
'tcp'
)
,
"\n"
;
print
inet_time
(
'localhost'
,
'udp'
)
,
"\n"
;