URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [libgo/] [go/] [log/] [syslog/] [syslog_unix.go] - Rev 747
Compare with Previous | Blame | View Log
// Copyright 2009 The Go Authors. All rights reserved.// Use of this source code is governed by a BSD-style// license that can be found in the LICENSE file.package syslogimport ("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 raddr stringfor _, network := range logTypes {for _, path := range logPaths {raddr = pathconn, err := net.Dial(network, raddr)if err != nil {continue} else {return netConn{conn}, nil}}}return nil, errors.New("Unix syslog delivery error")}
