blob: 5341cda925d9e8f08630265bf48365d767d66b27 (
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 and to tty.
# 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, tty, syslogd, server log.
use strict;
use warnings;
our %args = (
);
1;
|