├── .dockerignore ├── .editorconfig ├── .github ├── dependabot.yml └── workflows │ ├── codeql-analysis.yml │ └── go-tests.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── SECURITY.md ├── circular ├── circular.go └── circular_test.go ├── config.go ├── config_test.go ├── congestion ├── congestion.go └── live │ ├── doc.go │ ├── fake.go │ ├── receive.go │ ├── receive_test.go │ ├── send.go │ └── send_test.go ├── conn_request.go ├── connection.go ├── connection_test.go ├── contrib ├── client │ ├── main.go │ ├── reader.go │ └── writer.go └── server │ └── main.go ├── crypto ├── crypto.go └── crypto_test.go ├── dial.go ├── dial_test.go ├── doc.go ├── go.mod ├── go.sum ├── listen.go ├── listen_test.go ├── log.go ├── log_test.go ├── net.go ├── net ├── ip.go ├── ip_test.go ├── syncookie.go └── syncookie_test.go ├── net_windows.go ├── packet ├── packet.go └── packet_test.go ├── pubsub.go ├── pubsub_test.go ├── rand ├── rand.go └── rand_test.go ├── server.go ├── server_test.go ├── statistics.go └── vendor ├── github.com ├── benburkert │ └── openpgp │ │ └── aes │ │ └── keywrap │ │ ├── doc.go │ │ └── keywrap.go ├── davecgh │ └── go-spew │ │ ├── LICENSE │ │ └── spew │ │ ├── bypass.go │ │ ├── bypasssafe.go │ │ ├── common.go │ │ ├── config.go │ │ ├── doc.go │ │ ├── dump.go │ │ ├── format.go │ │ └── spew.go ├── felixge │ └── fgprof │ │ ├── BenchmarkProfilerGoroutines.txt │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── fgprof.go │ │ └── handler.go ├── google │ └── pprof │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ └── profile │ │ ├── encode.go │ │ ├── filter.go │ │ ├── index.go │ │ ├── legacy_java_profile.go │ │ ├── legacy_profile.go │ │ ├── merge.go │ │ ├── profile.go │ │ ├── proto.go │ │ └── prune.go ├── pkg │ └── profile │ │ ├── .travis.yml │ │ ├── AUTHORS │ │ ├── LICENSE │ │ ├── README.md │ │ └── profile.go ├── pmezard │ └── go-difflib │ │ ├── LICENSE │ │ └── difflib │ │ └── difflib.go └── stretchr │ └── testify │ ├── LICENSE │ ├── assert │ ├── assertion_compare.go │ ├── assertion_format.go │ ├── assertion_format.go.tmpl │ ├── assertion_forward.go │ ├── assertion_forward.go.tmpl │ ├── assertion_order.go │ ├── assertions.go │ ├── doc.go │ ├── errors.go │ ├── forward_assertions.go │ ├── http_assertions.go │ └── yaml │ │ ├── yaml_custom.go │ │ ├── yaml_default.go │ │ └── yaml_fail.go │ └── require │ ├── doc.go │ ├── forward_requirements.go │ ├── require.go │ ├── require.go.tmpl │ ├── require_forward.go │ ├── require_forward.go.tmpl │ └── requirements.go ├── golang.org └── x │ └── sys │ ├── LICENSE │ ├── PATENTS │ └── windows │ ├── aliases.go │ ├── dll_windows.go │ ├── env_windows.go │ ├── eventlog.go │ ├── exec_windows.go │ ├── memory_windows.go │ ├── mkerrors.bash │ ├── mkknownfolderids.bash │ ├── mksyscall.go │ ├── race.go │ ├── race0.go │ ├── security_windows.go │ ├── service.go │ ├── setupapi_windows.go │ ├── str.go │ ├── syscall.go │ ├── syscall_windows.go │ ├── types_windows.go │ ├── types_windows_386.go │ ├── types_windows_amd64.go │ ├── types_windows_arm.go │ ├── types_windows_arm64.go │ ├── zerrors_windows.go │ ├── zknownfolderids_windows.go │ └── zsyscall_windows.go ├── gopkg.in └── yaml.v3 │ ├── LICENSE │ ├── NOTICE │ ├── README.md │ ├── apic.go │ ├── decode.go │ ├── emitterc.go │ ├── encode.go │ ├── parserc.go │ ├── readerc.go │ ├── resolve.go │ ├── scannerc.go │ ├── sorter.go │ ├── writerc.go │ ├── yaml.go │ ├── yamlh.go │ └── yamlprivateh.go └── modules.txt /.dockerignore: -------------------------------------------------------------------------------- 1 | Dockerfile 2 | /.git 3 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/go-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/.github/workflows/go-tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/SECURITY.md -------------------------------------------------------------------------------- /circular/circular.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/circular/circular.go -------------------------------------------------------------------------------- /circular/circular_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/circular/circular_test.go -------------------------------------------------------------------------------- /config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/config.go -------------------------------------------------------------------------------- /config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/config_test.go -------------------------------------------------------------------------------- /congestion/congestion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/congestion/congestion.go -------------------------------------------------------------------------------- /congestion/live/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/congestion/live/doc.go -------------------------------------------------------------------------------- /congestion/live/fake.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/congestion/live/fake.go -------------------------------------------------------------------------------- /congestion/live/receive.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/congestion/live/receive.go -------------------------------------------------------------------------------- /congestion/live/receive_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/congestion/live/receive_test.go -------------------------------------------------------------------------------- /congestion/live/send.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/congestion/live/send.go -------------------------------------------------------------------------------- /congestion/live/send_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/congestion/live/send_test.go -------------------------------------------------------------------------------- /conn_request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/conn_request.go -------------------------------------------------------------------------------- /connection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/connection.go -------------------------------------------------------------------------------- /connection_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/connection_test.go -------------------------------------------------------------------------------- /contrib/client/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/contrib/client/main.go -------------------------------------------------------------------------------- /contrib/client/reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/contrib/client/reader.go -------------------------------------------------------------------------------- /contrib/client/writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/contrib/client/writer.go -------------------------------------------------------------------------------- /contrib/server/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/contrib/server/main.go -------------------------------------------------------------------------------- /crypto/crypto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/crypto/crypto.go -------------------------------------------------------------------------------- /crypto/crypto_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/crypto/crypto_test.go -------------------------------------------------------------------------------- /dial.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/dial.go -------------------------------------------------------------------------------- /dial_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/dial_test.go -------------------------------------------------------------------------------- /doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/doc.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/go.sum -------------------------------------------------------------------------------- /listen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/listen.go -------------------------------------------------------------------------------- /listen_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/listen_test.go -------------------------------------------------------------------------------- /log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/log.go -------------------------------------------------------------------------------- /log_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/log_test.go -------------------------------------------------------------------------------- /net.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/net.go -------------------------------------------------------------------------------- /net/ip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/net/ip.go -------------------------------------------------------------------------------- /net/ip_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/net/ip_test.go -------------------------------------------------------------------------------- /net/syncookie.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/net/syncookie.go -------------------------------------------------------------------------------- /net/syncookie_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/net/syncookie_test.go -------------------------------------------------------------------------------- /net_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/net_windows.go -------------------------------------------------------------------------------- /packet/packet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/packet/packet.go -------------------------------------------------------------------------------- /packet/packet_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/packet/packet_test.go -------------------------------------------------------------------------------- /pubsub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/pubsub.go -------------------------------------------------------------------------------- /pubsub_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/pubsub_test.go -------------------------------------------------------------------------------- /rand/rand.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/rand/rand.go -------------------------------------------------------------------------------- /rand/rand_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/rand/rand_test.go -------------------------------------------------------------------------------- /server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/server.go -------------------------------------------------------------------------------- /server_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/server_test.go -------------------------------------------------------------------------------- /statistics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/statistics.go -------------------------------------------------------------------------------- /vendor/github.com/benburkert/openpgp/aes/keywrap/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/vendor/github.com/benburkert/openpgp/aes/keywrap/doc.go -------------------------------------------------------------------------------- /vendor/github.com/benburkert/openpgp/aes/keywrap/keywrap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/vendor/github.com/benburkert/openpgp/aes/keywrap/keywrap.go -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/vendor/github.com/davecgh/go-spew/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/spew/bypass.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/vendor/github.com/davecgh/go-spew/spew/bypass.go -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/spew/bypasssafe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/vendor/github.com/davecgh/go-spew/spew/bypasssafe.go -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/spew/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/vendor/github.com/davecgh/go-spew/spew/common.go -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/spew/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/vendor/github.com/davecgh/go-spew/spew/config.go -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/spew/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/vendor/github.com/davecgh/go-spew/spew/doc.go -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/spew/dump.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/vendor/github.com/davecgh/go-spew/spew/dump.go -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/spew/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/vendor/github.com/davecgh/go-spew/spew/format.go -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/spew/spew.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/vendor/github.com/davecgh/go-spew/spew/spew.go -------------------------------------------------------------------------------- /vendor/github.com/felixge/fgprof/BenchmarkProfilerGoroutines.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/vendor/github.com/felixge/fgprof/BenchmarkProfilerGoroutines.txt -------------------------------------------------------------------------------- /vendor/github.com/felixge/fgprof/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/vendor/github.com/felixge/fgprof/LICENSE.txt -------------------------------------------------------------------------------- /vendor/github.com/felixge/fgprof/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/vendor/github.com/felixge/fgprof/README.md -------------------------------------------------------------------------------- /vendor/github.com/felixge/fgprof/fgprof.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/vendor/github.com/felixge/fgprof/fgprof.go -------------------------------------------------------------------------------- /vendor/github.com/felixge/fgprof/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/vendor/github.com/felixge/fgprof/handler.go -------------------------------------------------------------------------------- /vendor/github.com/google/pprof/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/vendor/github.com/google/pprof/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/google/pprof/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/vendor/github.com/google/pprof/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/github.com/google/pprof/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/vendor/github.com/google/pprof/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/google/pprof/profile/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/vendor/github.com/google/pprof/profile/encode.go -------------------------------------------------------------------------------- /vendor/github.com/google/pprof/profile/filter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/vendor/github.com/google/pprof/profile/filter.go -------------------------------------------------------------------------------- /vendor/github.com/google/pprof/profile/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/vendor/github.com/google/pprof/profile/index.go -------------------------------------------------------------------------------- /vendor/github.com/google/pprof/profile/legacy_java_profile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/vendor/github.com/google/pprof/profile/legacy_java_profile.go -------------------------------------------------------------------------------- /vendor/github.com/google/pprof/profile/legacy_profile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/vendor/github.com/google/pprof/profile/legacy_profile.go -------------------------------------------------------------------------------- /vendor/github.com/google/pprof/profile/merge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/vendor/github.com/google/pprof/profile/merge.go -------------------------------------------------------------------------------- /vendor/github.com/google/pprof/profile/profile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/vendor/github.com/google/pprof/profile/profile.go -------------------------------------------------------------------------------- /vendor/github.com/google/pprof/profile/proto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/vendor/github.com/google/pprof/profile/proto.go -------------------------------------------------------------------------------- /vendor/github.com/google/pprof/profile/prune.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/vendor/github.com/google/pprof/profile/prune.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/profile/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/vendor/github.com/pkg/profile/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/pkg/profile/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/vendor/github.com/pkg/profile/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/pkg/profile/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/vendor/github.com/pkg/profile/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/pkg/profile/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/vendor/github.com/pkg/profile/README.md -------------------------------------------------------------------------------- /vendor/github.com/pkg/profile/profile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/vendor/github.com/pkg/profile/profile.go -------------------------------------------------------------------------------- /vendor/github.com/pmezard/go-difflib/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/vendor/github.com/pmezard/go-difflib/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/pmezard/go-difflib/difflib/difflib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/vendor/github.com/pmezard/go-difflib/difflib/difflib.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/vendor/github.com/stretchr/testify/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/assert/assertion_compare.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/vendor/github.com/stretchr/testify/assert/assertion_compare.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/assert/assertion_format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/vendor/github.com/stretchr/testify/assert/assertion_format.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/assert/assertion_format.go.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/vendor/github.com/stretchr/testify/assert/assertion_format.go.tmpl -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/assert/assertion_forward.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/vendor/github.com/stretchr/testify/assert/assertion_forward.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/assert/assertion_forward.go.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/vendor/github.com/stretchr/testify/assert/assertion_forward.go.tmpl -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/assert/assertion_order.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/vendor/github.com/stretchr/testify/assert/assertion_order.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/assert/assertions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/vendor/github.com/stretchr/testify/assert/assertions.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/assert/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/vendor/github.com/stretchr/testify/assert/doc.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/assert/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/vendor/github.com/stretchr/testify/assert/errors.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/assert/forward_assertions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/vendor/github.com/stretchr/testify/assert/forward_assertions.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/assert/http_assertions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/vendor/github.com/stretchr/testify/assert/http_assertions.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/assert/yaml/yaml_custom.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/vendor/github.com/stretchr/testify/assert/yaml/yaml_custom.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/assert/yaml/yaml_default.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/vendor/github.com/stretchr/testify/assert/yaml/yaml_default.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/assert/yaml/yaml_fail.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/vendor/github.com/stretchr/testify/assert/yaml/yaml_fail.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/require/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/vendor/github.com/stretchr/testify/require/doc.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/require/forward_requirements.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/vendor/github.com/stretchr/testify/require/forward_requirements.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/require/require.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/vendor/github.com/stretchr/testify/require/require.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/require/require.go.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/vendor/github.com/stretchr/testify/require/require.go.tmpl -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/require/require_forward.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/vendor/github.com/stretchr/testify/require/require_forward.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/require/require_forward.go.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/vendor/github.com/stretchr/testify/require/require_forward.go.tmpl -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/require/requirements.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/vendor/github.com/stretchr/testify/require/requirements.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/vendor/golang.org/x/sys/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/vendor/golang.org/x/sys/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/aliases.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/vendor/golang.org/x/sys/windows/aliases.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/dll_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/vendor/golang.org/x/sys/windows/dll_windows.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/env_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/vendor/golang.org/x/sys/windows/env_windows.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/eventlog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/vendor/golang.org/x/sys/windows/eventlog.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/exec_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/vendor/golang.org/x/sys/windows/exec_windows.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/memory_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/vendor/golang.org/x/sys/windows/memory_windows.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/mkerrors.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/vendor/golang.org/x/sys/windows/mkerrors.bash -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/mkknownfolderids.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/vendor/golang.org/x/sys/windows/mkknownfolderids.bash -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/mksyscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/vendor/golang.org/x/sys/windows/mksyscall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/vendor/golang.org/x/sys/windows/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/vendor/golang.org/x/sys/windows/race0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/security_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/vendor/golang.org/x/sys/windows/security_windows.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/vendor/golang.org/x/sys/windows/service.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/setupapi_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/vendor/golang.org/x/sys/windows/setupapi_windows.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/vendor/golang.org/x/sys/windows/str.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/vendor/golang.org/x/sys/windows/syscall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/syscall_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/vendor/golang.org/x/sys/windows/syscall_windows.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/types_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/vendor/golang.org/x/sys/windows/types_windows.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/types_windows_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/vendor/golang.org/x/sys/windows/types_windows_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/types_windows_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/vendor/golang.org/x/sys/windows/types_windows_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/types_windows_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/vendor/golang.org/x/sys/windows/types_windows_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/types_windows_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/vendor/golang.org/x/sys/windows/types_windows_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/zerrors_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/vendor/golang.org/x/sys/windows/zerrors_windows.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/zknownfolderids_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/vendor/golang.org/x/sys/windows/zknownfolderids_windows.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/zsyscall_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/vendor/golang.org/x/sys/windows/zsyscall_windows.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/vendor/gopkg.in/yaml.v3/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/vendor/gopkg.in/yaml.v3/NOTICE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/vendor/gopkg.in/yaml.v3/README.md -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/vendor/gopkg.in/yaml.v3/apic.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/vendor/gopkg.in/yaml.v3/decode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/vendor/gopkg.in/yaml.v3/emitterc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/vendor/gopkg.in/yaml.v3/encode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/vendor/gopkg.in/yaml.v3/parserc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/vendor/gopkg.in/yaml.v3/readerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/vendor/gopkg.in/yaml.v3/resolve.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/vendor/gopkg.in/yaml.v3/scannerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/vendor/gopkg.in/yaml.v3/sorter.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/vendor/gopkg.in/yaml.v3/writerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/vendor/gopkg.in/yaml.v3/yaml.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/vendor/gopkg.in/yaml.v3/yamlh.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/yamlprivateh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/vendor/gopkg.in/yaml.v3/yamlprivateh.go -------------------------------------------------------------------------------- /vendor/modules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datarhei/gosrt/HEAD/vendor/modules.txt --------------------------------------------------------------------------------