├── Makefile ├── README.md ├── go.mod ├── go.sum ├── internal ├── catalog │ └── catalog.go ├── config │ └── config.go ├── invite │ └── invite.go ├── reg │ ├── auth.go │ └── reg.go ├── streams │ ├── .gitignore │ ├── README.md │ └── packet │ │ ├── Readme.md │ │ ├── common.go │ │ ├── ps_dec.go │ │ ├── ps_enc.go │ │ ├── rtpdec.go │ │ └── rtpenc.go ├── transport │ └── transport.go ├── useragent │ └── ua.go └── version │ └── version.go ├── main.go ├── sim.conf └── test.dat /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzh2nix/gb28181Simulator/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzh2nix/gb28181Simulator/HEAD/README.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzh2nix/gb28181Simulator/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzh2nix/gb28181Simulator/HEAD/go.sum -------------------------------------------------------------------------------- /internal/catalog/catalog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzh2nix/gb28181Simulator/HEAD/internal/catalog/catalog.go -------------------------------------------------------------------------------- /internal/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzh2nix/gb28181Simulator/HEAD/internal/config/config.go -------------------------------------------------------------------------------- /internal/invite/invite.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzh2nix/gb28181Simulator/HEAD/internal/invite/invite.go -------------------------------------------------------------------------------- /internal/reg/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzh2nix/gb28181Simulator/HEAD/internal/reg/auth.go -------------------------------------------------------------------------------- /internal/reg/reg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzh2nix/gb28181Simulator/HEAD/internal/reg/reg.go -------------------------------------------------------------------------------- /internal/streams/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzh2nix/gb28181Simulator/HEAD/internal/streams/.gitignore -------------------------------------------------------------------------------- /internal/streams/README.md: -------------------------------------------------------------------------------- 1 | copy from https://github.com/max-min/streams 2 | -------------------------------------------------------------------------------- /internal/streams/packet/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzh2nix/gb28181Simulator/HEAD/internal/streams/packet/Readme.md -------------------------------------------------------------------------------- /internal/streams/packet/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzh2nix/gb28181Simulator/HEAD/internal/streams/packet/common.go -------------------------------------------------------------------------------- /internal/streams/packet/ps_dec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzh2nix/gb28181Simulator/HEAD/internal/streams/packet/ps_dec.go -------------------------------------------------------------------------------- /internal/streams/packet/ps_enc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzh2nix/gb28181Simulator/HEAD/internal/streams/packet/ps_enc.go -------------------------------------------------------------------------------- /internal/streams/packet/rtpdec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzh2nix/gb28181Simulator/HEAD/internal/streams/packet/rtpdec.go -------------------------------------------------------------------------------- /internal/streams/packet/rtpenc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzh2nix/gb28181Simulator/HEAD/internal/streams/packet/rtpenc.go -------------------------------------------------------------------------------- /internal/transport/transport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzh2nix/gb28181Simulator/HEAD/internal/transport/transport.go -------------------------------------------------------------------------------- /internal/useragent/ua.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzh2nix/gb28181Simulator/HEAD/internal/useragent/ua.go -------------------------------------------------------------------------------- /internal/version/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzh2nix/gb28181Simulator/HEAD/internal/version/version.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzh2nix/gb28181Simulator/HEAD/main.go -------------------------------------------------------------------------------- /sim.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzh2nix/gb28181Simulator/HEAD/sim.conf -------------------------------------------------------------------------------- /test.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzh2nix/gb28181Simulator/HEAD/test.dat --------------------------------------------------------------------------------