Playing around with collecting syslog over TCP

mostly with rsyslog on the other side, reading through Rainer's RFCs
This commit is contained in:
2013-01-24 23:11:14 -05:00
parent 92f7543872
commit fb3009574f
7 changed files with 264 additions and 0 deletions

18
sltcpsrv/Makefile Normal file
View File

@@ -0,0 +1,18 @@
LIBS := \
github.com/meatballhat/box-o-sand/sltcpsrv
TARGETS := \
$(LIBS) \
github.com/meatballhat/box-o-sand/sltcpsrv/syslog-tcp-server
all: build test
build: deps
go install -x $(TARGETS)
test:
go test -x -v $(LIBS)
deps:
go get -x $(TARGETS)
.PHONY: all build deps test