You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -5,13 +5,13 @@
5
5
Client library written in Java to send messages to a Syslog server.
6
6
7
7
*`SyslogMessageSender`: send messages to a Syslog Server. Support implementations
8
-
*`UdpSyslogMessageSender`: [RFC 3614 - The BSD syslog Protocol](http://tools.ietf.org/html/rfc3164) and [RFC 5426 - Transmission of Syslog Messages over UDP](http://tools.ietf.org/html/rfc5426)
8
+
*`UdpSyslogMessageSender`: [RFC 3164 - The BSD syslog Protocol](http://tools.ietf.org/html/rfc3164) and [RFC 5426 - Transmission of Syslog Messages over UDP](http://tools.ietf.org/html/rfc5426)
9
9
*`TcpSyslogMessageSender`: [RFC 6587 - Transmission of Syslog Messages over TCP](http://tools.ietf.org/html/rfc5426) (including SSL support)
10
10
*`com.cloudbees.syslog.integration.jul.SyslogHandler`: java.util.logging handler to output log messages to a Syslog server.
11
11
12
12
13
13
14
-
## Sample UDP sender using RFC 3614
14
+
## Sample UDP sender using RFC 3164
15
15
16
16
```java
17
17
@@ -30,7 +30,7 @@ messageSender.setMessageFormat(MessageFormat.RFC_3164); // optional, default is
30
30
messageSender.sendMessage("This is a test message");
0 commit comments