package core

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type

Types of messages

type t =
  1. | KERN
    (*

    Kernel messages

    *)
  2. | USER
    (*

    Generic user-level message (default)

    *)
  3. | MAIL
    (*

    Mail subsystem

    *)
  4. | DAEMON
    (*

    System daemons without separate facility value

    *)
  5. | AUTH
    (*

    Security/authorization messages (DEPRECATED, use AUTHPRIV)

    *)
  6. | SYSLOG
    (*

    Messages generated internally by syslogd

    *)
  7. | LPR
    (*

    Line printer subsystem

    *)
  8. | NEWS
    (*

    USENET news subsystem

    *)
  9. | UUCP
    (*

    UUCP subsystem

    *)
  10. | CRON
    (*

    Clock daemon (cron and at)

    *)
  11. | AUTHPRIV
    (*

    Security/authorization messages (private)

    *)
  12. | FTP
    (*

    FTP daemon

    *)
  13. | LOCAL0
  14. | LOCAL1
  15. | LOCAL2
  16. | LOCAL3
  17. | LOCAL4
  18. | LOCAL5
  19. | LOCAL6
  20. | LOCAL7
    (*

    LOCAL0-7 reserved for local use

    *)
include Ppx_sexp_conv_lib.Sexpable.S with type t := t
val t_of_sexp : Sexplib0.Sexp.t -> t
val sexp_of_t : t -> Sexplib0.Sexp.t