blob: c37ce36f1f96531a76fee40abb0122cb527f6c56 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# Test with default values, that is:
# The client writes a message to Sys::Syslog native method.
# The syslogd writes it into a file and through a pipe.
# The syslogd passes it via UDP to the loghost.
# The server receives the message on its UDP socket.
# Find the message in client, file, pipe, syslogd, server log.
use strict;
use warnings;
our %args = (
);
1;
|