Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for unixSyslog (0.09 sec)

  1. src/log/syslog/syslog_unix.go

    // license that can be found in the LICENSE file.
    
    //go:build !windows && !plan9
    
    package syslog
    
    import (
    	"errors"
    	"net"
    )
    
    // unixSyslog opens a connection to the syslog daemon running on the
    // local machine using a Unix domain socket.
    
    func unixSyslog() (conn serverConn, err error) {
    	logTypes := []string{"unixgram", "unix"}
    	logPaths := []string{"/dev/log", "/var/run/syslog", "/var/run/log"}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 758 bytes
    - Viewed (0)
  2. src/log/syslog/syslog.go

    // Solaris support as implemented by gccgo. On Solaris you cannot
    // simply open a TCP connection to the syslog daemon. The gccgo
    // sources have a syslog_solaris.go file that implements unixSyslog to
    // return a type that satisfies this interface and simply calls the C
    // library syslog function.
    type serverConn interface {
    	writeString(p Priority, hostname, tag, s, nl string) error
    	close() error
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 23 22:56:07 UTC 2023
    - 7.5K bytes
    - Viewed (0)
Back to top