gtsocial-umbx

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

rfc3164.go (294B)


      1 package format
      2 
      3 import (
      4 	"bufio"
      5 
      6 	"gopkg.in/mcuadros/go-syslog.v2/internal/syslogparser/rfc3164"
      7 )
      8 
      9 type RFC3164 struct{}
     10 
     11 func (f *RFC3164) GetParser(line []byte) LogParser {
     12 	return &parserWrapper{rfc3164.NewParser(line)}
     13 }
     14 
     15 func (f *RFC3164) GetSplitFunc() bufio.SplitFunc {
     16 	return nil
     17 }