├── .github └── workflows │ └── build-test-ci.yml ├── .gitignore ├── ChangeLog.md ├── Dockerfile ├── LICENSE.md ├── Makefile.am ├── Makefile.in ├── README.md ├── aclocal.m4 ├── aggregator.c ├── aggregator.h ├── allocator.c ├── allocator.h ├── carbon-c-relay.md ├── carbon-c-relay.vim ├── collector.c ├── collector.h ├── compile ├── conffile.h ├── conffile.l ├── conffile.tab.c ├── conffile.tab.h ├── conffile.y ├── conffile.yy.c ├── config.guess ├── config.h.in ├── config.sub ├── configure ├── configure.ac ├── consistent-hash.c ├── consistent-hash.h ├── contrib ├── relay.logrotate └── relay.monit ├── depcomp ├── dispatcher.c ├── dispatcher.h ├── faketime.c ├── faketime.h ├── fnv1a.h ├── install-sh ├── issues ├── distributiontest.c ├── issue10.conf ├── issue111.conf ├── issue117.conf ├── issue131.conf ├── issue135.conf ├── issue14.conf ├── issue152.conf ├── issue156.conf ├── issue157.conf ├── issue16.conf ├── issue160.conf ├── issue163.conf ├── issue165.conf ├── issue17.conf ├── issue180-a.conf ├── issue180.conf ├── issue184.conf ├── issue202.conf ├── issue211.conf ├── issue213.conf ├── issue218.conf ├── issue228.conf ├── issue231.conf ├── issue235.conf ├── issue236.conf ├── issue238.conf ├── issue240-rewrites.conf ├── issue240.conf ├── issue246.conf ├── issue252.conf ├── issue253.conf ├── issue263-c0.conf ├── issue263-c1.conf ├── issue263-c2.conf ├── issue263.conf ├── issue267.conf ├── issue27.conf ├── issue288.conf ├── issue293.conf ├── issue294.conf ├── issue310.conf ├── issue357.conf ├── issue369.conf ├── issue448.conf ├── issue461.conf ├── issue462.conf ├── issue465.conf ├── issue60-generator.py ├── issue60.conf ├── issue82.conf ├── issue94-2.conf ├── issue94-3.conf ├── issue94-4.conf ├── issue94.conf └── routertest.c ├── ltmain.sh ├── make-release.sh ├── md5.c ├── md5.h ├── missing ├── posixregex.h ├── queue.c ├── queue.h ├── receptor.c ├── receptor.h ├── relay.1 ├── relay.c ├── relay.h ├── router.c ├── router.h ├── sendmetric.c ├── server.c ├── server.h └── test ├── basic.payload ├── basic.payloadout ├── basic.stst ├── buftest.gz.stst ├── buftest.lz4.stst ├── buftest.ssl.cert ├── buftest.ssl.stst ├── create-self-cert.sh ├── dual-gzip-2.stst ├── dual-gzip.payload ├── dual-gzip.payloadout ├── dual-gzip.stst ├── dual-large-2.stst ├── dual-large-gzip-2.stst ├── dual-large-gzip.stst ├── dual-large-lz4-2.stst ├── dual-large-lz4.stst ├── dual-large-ssl-2.stst ├── dual-large-ssl.cert ├── dual-large-ssl.stst ├── dual-large.stst ├── dual-lz4-2.stst ├── dual-lz4.payload ├── dual-lz4.payloadout ├── dual-lz4.stst ├── dual-mtls-2.stst ├── dual-mtls.cert ├── dual-mtls.payload ├── dual-mtls.payloadout ├── dual-mtls.stst ├── dual-ssl-2.stst ├── dual-ssl.payload ├── dual-ssl.payloadout ├── dual-ssl.stst ├── dual-tcp-2.stst ├── dual-tcp.payload ├── dual-tcp.payloadout ├── dual-tcp.stst ├── dual-udp-2.stst ├── dual-udp.payload ├── dual-udp.payloadout ├── dual-udp.stst ├── issue10.out ├── issue10.tst ├── issue117.out ├── issue117.tst ├── issue156.out ├── issue156.tst ├── issue157.out ├── issue157.tst ├── issue163.out ├── issue163.tst ├── issue165.out ├── issue165.tst ├── issue180.out ├── issue180.tst ├── issue184.out ├── issue184.tst ├── issue202.out ├── issue202.tst ├── issue213.dbg ├── issue213.out ├── issue218.out ├── issue218.tst ├── issue228.out ├── issue228.tst ├── issue235.out ├── issue235.tst ├── issue236.dbg ├── issue236.out ├── issue238.out ├── issue238.tst ├── issue246.out ├── issue246.tst ├── issue252.out ├── issue252.tst ├── issue253.out ├── issue253.tst ├── issue263-c0.out ├── issue263-c0.tst ├── issue263.out ├── issue263.tst ├── issue267.out ├── issue267.tst ├── issue27.out ├── issue27.tst ├── issue288.out ├── issue288.tst ├── issue293.out ├── issue293.tst ├── issue310.dbg ├── issue310.out ├── issue357.dbg ├── issue357.out ├── issue369.out ├── issue369.tst ├── issue448.out ├── issue448.tst ├── issue461.out ├── issue461.tst ├── issue462.out ├── issue462.tst ├── issue465.out ├── issue465.tst ├── large-gzip-2.stst ├── large-gzip.stst ├── large-lz4-2.stst ├── large-lz4.stst ├── large-ssl-2.stst ├── large-ssl.cert ├── large-ssl.stst ├── large.stst ├── listen-duplicates01.conf ├── listen-duplicates01.out ├── listen-duplicates01.tst ├── listen-duplicates02.conf ├── listen-duplicates02.out ├── listen-duplicates02.tst ├── listen.conf ├── listen.out ├── listen.tst ├── metriclimits.args ├── metriclimits.payload ├── metriclimits.payloadout ├── metriclimits.stst ├── run-test.sh ├── server-type.conf ├── server-type.out └── server-type.tst /.github/workflows/build-test-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/.github/workflows/build-test-ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/.gitignore -------------------------------------------------------------------------------- /ChangeLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/ChangeLog.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/Makefile.am -------------------------------------------------------------------------------- /Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/Makefile.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | carbon-c-relay.md -------------------------------------------------------------------------------- /aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/aclocal.m4 -------------------------------------------------------------------------------- /aggregator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/aggregator.c -------------------------------------------------------------------------------- /aggregator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/aggregator.h -------------------------------------------------------------------------------- /allocator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/allocator.c -------------------------------------------------------------------------------- /allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/allocator.h -------------------------------------------------------------------------------- /carbon-c-relay.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/carbon-c-relay.md -------------------------------------------------------------------------------- /carbon-c-relay.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/carbon-c-relay.vim -------------------------------------------------------------------------------- /collector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/collector.c -------------------------------------------------------------------------------- /collector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/collector.h -------------------------------------------------------------------------------- /compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/compile -------------------------------------------------------------------------------- /conffile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/conffile.h -------------------------------------------------------------------------------- /conffile.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/conffile.l -------------------------------------------------------------------------------- /conffile.tab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/conffile.tab.c -------------------------------------------------------------------------------- /conffile.tab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/conffile.tab.h -------------------------------------------------------------------------------- /conffile.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/conffile.y -------------------------------------------------------------------------------- /conffile.yy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/conffile.yy.c -------------------------------------------------------------------------------- /config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/config.guess -------------------------------------------------------------------------------- /config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/config.h.in -------------------------------------------------------------------------------- /config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/config.sub -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/configure -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/configure.ac -------------------------------------------------------------------------------- /consistent-hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/consistent-hash.c -------------------------------------------------------------------------------- /consistent-hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/consistent-hash.h -------------------------------------------------------------------------------- /contrib/relay.logrotate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/contrib/relay.logrotate -------------------------------------------------------------------------------- /contrib/relay.monit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/contrib/relay.monit -------------------------------------------------------------------------------- /depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/depcomp -------------------------------------------------------------------------------- /dispatcher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/dispatcher.c -------------------------------------------------------------------------------- /dispatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/dispatcher.h -------------------------------------------------------------------------------- /faketime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/faketime.c -------------------------------------------------------------------------------- /faketime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/faketime.h -------------------------------------------------------------------------------- /fnv1a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/fnv1a.h -------------------------------------------------------------------------------- /install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/install-sh -------------------------------------------------------------------------------- /issues/distributiontest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/issues/distributiontest.c -------------------------------------------------------------------------------- /issues/issue10.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/issues/issue10.conf -------------------------------------------------------------------------------- /issues/issue111.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/issues/issue111.conf -------------------------------------------------------------------------------- /issues/issue117.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/issues/issue117.conf -------------------------------------------------------------------------------- /issues/issue131.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/issues/issue131.conf -------------------------------------------------------------------------------- /issues/issue135.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/issues/issue135.conf -------------------------------------------------------------------------------- /issues/issue14.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/issues/issue14.conf -------------------------------------------------------------------------------- /issues/issue152.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/issues/issue152.conf -------------------------------------------------------------------------------- /issues/issue156.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/issues/issue156.conf -------------------------------------------------------------------------------- /issues/issue157.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/issues/issue157.conf -------------------------------------------------------------------------------- /issues/issue16.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/issues/issue16.conf -------------------------------------------------------------------------------- /issues/issue160.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/issues/issue160.conf -------------------------------------------------------------------------------- /issues/issue163.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/issues/issue163.conf -------------------------------------------------------------------------------- /issues/issue165.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/issues/issue165.conf -------------------------------------------------------------------------------- /issues/issue17.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/issues/issue17.conf -------------------------------------------------------------------------------- /issues/issue180-a.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/issues/issue180-a.conf -------------------------------------------------------------------------------- /issues/issue180.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/issues/issue180.conf -------------------------------------------------------------------------------- /issues/issue184.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/issues/issue184.conf -------------------------------------------------------------------------------- /issues/issue202.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/issues/issue202.conf -------------------------------------------------------------------------------- /issues/issue211.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/issues/issue211.conf -------------------------------------------------------------------------------- /issues/issue213.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/issues/issue213.conf -------------------------------------------------------------------------------- /issues/issue218.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/issues/issue218.conf -------------------------------------------------------------------------------- /issues/issue228.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/issues/issue228.conf -------------------------------------------------------------------------------- /issues/issue231.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/issues/issue231.conf -------------------------------------------------------------------------------- /issues/issue235.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/issues/issue235.conf -------------------------------------------------------------------------------- /issues/issue236.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/issues/issue236.conf -------------------------------------------------------------------------------- /issues/issue238.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/issues/issue238.conf -------------------------------------------------------------------------------- /issues/issue240-rewrites.conf: -------------------------------------------------------------------------------- 1 | rewrite a into b; 2 | -------------------------------------------------------------------------------- /issues/issue240.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/issues/issue240.conf -------------------------------------------------------------------------------- /issues/issue246.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/issues/issue246.conf -------------------------------------------------------------------------------- /issues/issue252.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/issues/issue252.conf -------------------------------------------------------------------------------- /issues/issue253.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/issues/issue253.conf -------------------------------------------------------------------------------- /issues/issue263-c0.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/issues/issue263-c0.conf -------------------------------------------------------------------------------- /issues/issue263-c1.conf: -------------------------------------------------------------------------------- 1 | produce a syntax error here 2 | -------------------------------------------------------------------------------- /issues/issue263-c2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/issues/issue263-c2.conf -------------------------------------------------------------------------------- /issues/issue263.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/issues/issue263.conf -------------------------------------------------------------------------------- /issues/issue267.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/issues/issue267.conf -------------------------------------------------------------------------------- /issues/issue27.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/issues/issue27.conf -------------------------------------------------------------------------------- /issues/issue288.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/issues/issue288.conf -------------------------------------------------------------------------------- /issues/issue293.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/issues/issue293.conf -------------------------------------------------------------------------------- /issues/issue294.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/issues/issue294.conf -------------------------------------------------------------------------------- /issues/issue310.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/issues/issue310.conf -------------------------------------------------------------------------------- /issues/issue357.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/issues/issue357.conf -------------------------------------------------------------------------------- /issues/issue369.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/issues/issue369.conf -------------------------------------------------------------------------------- /issues/issue448.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/issues/issue448.conf -------------------------------------------------------------------------------- /issues/issue461.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/issues/issue461.conf -------------------------------------------------------------------------------- /issues/issue462.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/issues/issue462.conf -------------------------------------------------------------------------------- /issues/issue465.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/issues/issue465.conf -------------------------------------------------------------------------------- /issues/issue60-generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/issues/issue60-generator.py -------------------------------------------------------------------------------- /issues/issue60.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/issues/issue60.conf -------------------------------------------------------------------------------- /issues/issue82.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/issues/issue82.conf -------------------------------------------------------------------------------- /issues/issue94-2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/issues/issue94-2.conf -------------------------------------------------------------------------------- /issues/issue94-3.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/issues/issue94-3.conf -------------------------------------------------------------------------------- /issues/issue94-4.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/issues/issue94-4.conf -------------------------------------------------------------------------------- /issues/issue94.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/issues/issue94.conf -------------------------------------------------------------------------------- /issues/routertest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/issues/routertest.c -------------------------------------------------------------------------------- /ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/ltmain.sh -------------------------------------------------------------------------------- /make-release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/make-release.sh -------------------------------------------------------------------------------- /md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/md5.c -------------------------------------------------------------------------------- /md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/md5.h -------------------------------------------------------------------------------- /missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/missing -------------------------------------------------------------------------------- /posixregex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/posixregex.h -------------------------------------------------------------------------------- /queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/queue.c -------------------------------------------------------------------------------- /queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/queue.h -------------------------------------------------------------------------------- /receptor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/receptor.c -------------------------------------------------------------------------------- /receptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/receptor.h -------------------------------------------------------------------------------- /relay.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/relay.1 -------------------------------------------------------------------------------- /relay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/relay.c -------------------------------------------------------------------------------- /relay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/relay.h -------------------------------------------------------------------------------- /router.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/router.c -------------------------------------------------------------------------------- /router.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/router.h -------------------------------------------------------------------------------- /sendmetric.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/sendmetric.c -------------------------------------------------------------------------------- /server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/server.c -------------------------------------------------------------------------------- /server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/server.h -------------------------------------------------------------------------------- /test/basic.payload: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/test/basic.payload -------------------------------------------------------------------------------- /test/basic.payloadout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/test/basic.payloadout -------------------------------------------------------------------------------- /test/basic.stst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/test/basic.stst -------------------------------------------------------------------------------- /test/buftest.gz.stst: -------------------------------------------------------------------------------- 1 | match * send to default; 2 | -------------------------------------------------------------------------------- /test/buftest.lz4.stst: -------------------------------------------------------------------------------- 1 | match * send to default; 2 | -------------------------------------------------------------------------------- /test/buftest.ssl.cert: -------------------------------------------------------------------------------- 1 | dual-ssl.cert -------------------------------------------------------------------------------- /test/buftest.ssl.stst: -------------------------------------------------------------------------------- 1 | match * send to default; 2 | -------------------------------------------------------------------------------- /test/create-self-cert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/test/create-self-cert.sh -------------------------------------------------------------------------------- /test/dual-gzip-2.stst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/test/dual-gzip-2.stst -------------------------------------------------------------------------------- /test/dual-gzip.payload: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/test/dual-gzip.payload -------------------------------------------------------------------------------- /test/dual-gzip.payloadout: -------------------------------------------------------------------------------- 1 | through-gzip.foo.bar 1 2 2 | -------------------------------------------------------------------------------- /test/dual-gzip.stst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/test/dual-gzip.stst -------------------------------------------------------------------------------- /test/dual-large-2.stst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/test/dual-large-2.stst -------------------------------------------------------------------------------- /test/dual-large-gzip-2.stst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/test/dual-large-gzip-2.stst -------------------------------------------------------------------------------- /test/dual-large-gzip.stst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/test/dual-large-gzip.stst -------------------------------------------------------------------------------- /test/dual-large-lz4-2.stst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/test/dual-large-lz4-2.stst -------------------------------------------------------------------------------- /test/dual-large-lz4.stst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/test/dual-large-lz4.stst -------------------------------------------------------------------------------- /test/dual-large-ssl-2.stst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/test/dual-large-ssl-2.stst -------------------------------------------------------------------------------- /test/dual-large-ssl.cert: -------------------------------------------------------------------------------- 1 | dual-ssl.cert -------------------------------------------------------------------------------- /test/dual-large-ssl.stst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/test/dual-large-ssl.stst -------------------------------------------------------------------------------- /test/dual-large.stst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/test/dual-large.stst -------------------------------------------------------------------------------- /test/dual-lz4-2.stst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/test/dual-lz4-2.stst -------------------------------------------------------------------------------- /test/dual-lz4.payload: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/test/dual-lz4.payload -------------------------------------------------------------------------------- /test/dual-lz4.payloadout: -------------------------------------------------------------------------------- 1 | through-lz4.foo.bar 1 2 2 | -------------------------------------------------------------------------------- /test/dual-lz4.stst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/test/dual-lz4.stst -------------------------------------------------------------------------------- /test/dual-mtls-2.stst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/test/dual-mtls-2.stst -------------------------------------------------------------------------------- /test/dual-mtls.cert: -------------------------------------------------------------------------------- 1 | dual-ssl.cert -------------------------------------------------------------------------------- /test/dual-mtls.payload: -------------------------------------------------------------------------------- 1 | dual-ssl.payload -------------------------------------------------------------------------------- /test/dual-mtls.payloadout: -------------------------------------------------------------------------------- 1 | dual-ssl.payloadout -------------------------------------------------------------------------------- /test/dual-mtls.stst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/test/dual-mtls.stst -------------------------------------------------------------------------------- /test/dual-ssl-2.stst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/test/dual-ssl-2.stst -------------------------------------------------------------------------------- /test/dual-ssl.payload: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/test/dual-ssl.payload -------------------------------------------------------------------------------- /test/dual-ssl.payloadout: -------------------------------------------------------------------------------- 1 | through-ssl.foo.bar 1 2 2 | -------------------------------------------------------------------------------- /test/dual-ssl.stst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/test/dual-ssl.stst -------------------------------------------------------------------------------- /test/dual-tcp-2.stst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/test/dual-tcp-2.stst -------------------------------------------------------------------------------- /test/dual-tcp.payload: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/test/dual-tcp.payload -------------------------------------------------------------------------------- /test/dual-tcp.payloadout: -------------------------------------------------------------------------------- 1 | through-tcp.foo.bar 1 2 2 | -------------------------------------------------------------------------------- /test/dual-tcp.stst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/test/dual-tcp.stst -------------------------------------------------------------------------------- /test/dual-udp-2.stst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/test/dual-udp-2.stst -------------------------------------------------------------------------------- /test/dual-udp.payload: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/test/dual-udp.payload -------------------------------------------------------------------------------- /test/dual-udp.payloadout: -------------------------------------------------------------------------------- 1 | through-udp.foo.bar 1 2 2 | -------------------------------------------------------------------------------- /test/dual-udp.stst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/test/dual-udp.stst -------------------------------------------------------------------------------- /test/issue10.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/test/issue10.out -------------------------------------------------------------------------------- /test/issue10.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/test/issue10.tst -------------------------------------------------------------------------------- /test/issue117.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/test/issue117.out -------------------------------------------------------------------------------- /test/issue117.tst: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/issue156.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/test/issue156.out -------------------------------------------------------------------------------- /test/issue156.tst: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/issue157.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/test/issue157.out -------------------------------------------------------------------------------- /test/issue157.tst: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/issue163.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/test/issue163.out -------------------------------------------------------------------------------- /test/issue163.tst: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/issue165.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/test/issue165.out -------------------------------------------------------------------------------- /test/issue165.tst: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/issue180.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/test/issue180.out -------------------------------------------------------------------------------- /test/issue180.tst: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/issue184.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/test/issue184.out -------------------------------------------------------------------------------- /test/issue184.tst: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/issue202.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/test/issue202.out -------------------------------------------------------------------------------- /test/issue202.tst: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/issue213.dbg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/issue213.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/test/issue213.out -------------------------------------------------------------------------------- /test/issue218.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/test/issue218.out -------------------------------------------------------------------------------- /test/issue218.tst: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/issue228.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/test/issue228.out -------------------------------------------------------------------------------- /test/issue228.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/test/issue228.tst -------------------------------------------------------------------------------- /test/issue235.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/test/issue235.out -------------------------------------------------------------------------------- /test/issue235.tst: -------------------------------------------------------------------------------- 1 | collection.fo.bar.x.y.blakwklsa.skla 2 | -------------------------------------------------------------------------------- /test/issue236.dbg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/test/issue236.dbg -------------------------------------------------------------------------------- /test/issue236.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/test/issue236.out -------------------------------------------------------------------------------- /test/issue238.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/test/issue238.out -------------------------------------------------------------------------------- /test/issue238.tst: -------------------------------------------------------------------------------- 1 | foo 4.2e-10 42 2 | -------------------------------------------------------------------------------- /test/issue246.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/test/issue246.out -------------------------------------------------------------------------------- /test/issue246.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/test/issue246.tst -------------------------------------------------------------------------------- /test/issue252.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/test/issue252.out -------------------------------------------------------------------------------- /test/issue252.tst: -------------------------------------------------------------------------------- 1 | collectd.test_host.cpu.42.percent.idle 2 | -------------------------------------------------------------------------------- /test/issue253.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/test/issue253.out -------------------------------------------------------------------------------- /test/issue253.tst: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/issue263-c0.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/test/issue263-c0.out -------------------------------------------------------------------------------- /test/issue263-c0.tst: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/issue263.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/test/issue263.out -------------------------------------------------------------------------------- /test/issue263.tst: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/issue267.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/test/issue267.out -------------------------------------------------------------------------------- /test/issue267.tst: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/issue27.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/test/issue27.out -------------------------------------------------------------------------------- /test/issue27.tst: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/issue288.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/test/issue288.out -------------------------------------------------------------------------------- /test/issue288.tst: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/issue293.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/test/issue293.out -------------------------------------------------------------------------------- /test/issue293.tst: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/issue310.dbg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/issue310.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/test/issue310.out -------------------------------------------------------------------------------- /test/issue357.dbg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/issue357.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/test/issue357.out -------------------------------------------------------------------------------- /test/issue369.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/test/issue369.out -------------------------------------------------------------------------------- /test/issue369.tst: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/issue448.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/test/issue448.out -------------------------------------------------------------------------------- /test/issue448.tst: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/issue461.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/test/issue461.out -------------------------------------------------------------------------------- /test/issue461.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/test/issue461.tst -------------------------------------------------------------------------------- /test/issue462.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/test/issue462.out -------------------------------------------------------------------------------- /test/issue462.tst: -------------------------------------------------------------------------------- 1 | sys.somemetric.random.percentile 2 | -------------------------------------------------------------------------------- /test/issue465.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/test/issue465.out -------------------------------------------------------------------------------- /test/issue465.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/test/issue465.tst -------------------------------------------------------------------------------- /test/large-gzip-2.stst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/test/large-gzip-2.stst -------------------------------------------------------------------------------- /test/large-gzip.stst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/test/large-gzip.stst -------------------------------------------------------------------------------- /test/large-lz4-2.stst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/test/large-lz4-2.stst -------------------------------------------------------------------------------- /test/large-lz4.stst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/test/large-lz4.stst -------------------------------------------------------------------------------- /test/large-ssl-2.stst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/test/large-ssl-2.stst -------------------------------------------------------------------------------- /test/large-ssl.cert: -------------------------------------------------------------------------------- 1 | dual-ssl.cert -------------------------------------------------------------------------------- /test/large-ssl.stst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/test/large-ssl.stst -------------------------------------------------------------------------------- /test/large.stst: -------------------------------------------------------------------------------- 1 | match * send to default; 2 | -------------------------------------------------------------------------------- /test/listen-duplicates01.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/test/listen-duplicates01.conf -------------------------------------------------------------------------------- /test/listen-duplicates01.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/test/listen-duplicates01.out -------------------------------------------------------------------------------- /test/listen-duplicates01.tst: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/listen-duplicates02.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/test/listen-duplicates02.conf -------------------------------------------------------------------------------- /test/listen-duplicates02.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/test/listen-duplicates02.out -------------------------------------------------------------------------------- /test/listen-duplicates02.tst: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/listen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/test/listen.conf -------------------------------------------------------------------------------- /test/listen.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/test/listen.out -------------------------------------------------------------------------------- /test/listen.tst: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/metriclimits.args: -------------------------------------------------------------------------------- 1 | -m 16 -M 24 2 | -------------------------------------------------------------------------------- /test/metriclimits.payload: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/test/metriclimits.payload -------------------------------------------------------------------------------- /test/metriclimits.payloadout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/test/metriclimits.payloadout -------------------------------------------------------------------------------- /test/metriclimits.stst: -------------------------------------------------------------------------------- 1 | match * send to default; 2 | -------------------------------------------------------------------------------- /test/run-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/test/run-test.sh -------------------------------------------------------------------------------- /test/server-type.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/test/server-type.conf -------------------------------------------------------------------------------- /test/server-type.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grobian/carbon-c-relay/HEAD/test/server-type.out -------------------------------------------------------------------------------- /test/server-type.tst: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------