├── .gitignore ├── LICENSE ├── README.md ├── accept.go ├── client.go ├── client_test.go ├── dial.go ├── example └── httpTest.go ├── go.mod ├── go.sum ├── naming.go ├── naming_test.go ├── options.go ├── options_test.go ├── replyParser.go ├── replyParser_test.go ├── sessions.go └── stream.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptix/goSam/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptix/goSam/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptix/goSam/HEAD/README.md -------------------------------------------------------------------------------- /accept.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptix/goSam/HEAD/accept.go -------------------------------------------------------------------------------- /client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptix/goSam/HEAD/client.go -------------------------------------------------------------------------------- /client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptix/goSam/HEAD/client_test.go -------------------------------------------------------------------------------- /dial.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptix/goSam/HEAD/dial.go -------------------------------------------------------------------------------- /example/httpTest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptix/goSam/HEAD/example/httpTest.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptix/goSam/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptix/goSam/HEAD/go.sum -------------------------------------------------------------------------------- /naming.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptix/goSam/HEAD/naming.go -------------------------------------------------------------------------------- /naming_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptix/goSam/HEAD/naming_test.go -------------------------------------------------------------------------------- /options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptix/goSam/HEAD/options.go -------------------------------------------------------------------------------- /options_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptix/goSam/HEAD/options_test.go -------------------------------------------------------------------------------- /replyParser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptix/goSam/HEAD/replyParser.go -------------------------------------------------------------------------------- /replyParser_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptix/goSam/HEAD/replyParser_test.go -------------------------------------------------------------------------------- /sessions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptix/goSam/HEAD/sessions.go -------------------------------------------------------------------------------- /stream.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptix/goSam/HEAD/stream.go --------------------------------------------------------------------------------