Home
last modified time | relevance | path

Searched defs:MultistreamMuxer (Results 1 – 2 of 2) sorted by relevance

/dports/net-im/dendrite/dendrite-0.5.1/vendor/github.com/multiformats/go-multistream/
H A Dmultistream.go45 type MultistreamMuxer struct { struct
46 handlerlock sync.RWMutex
47 handlers []Handler
142 func (msm *MultistreamMuxer) AddHandler(protocol string, handler HandlerFunc) {
162 func (msm *MultistreamMuxer) RemoveHandler(protocol string) {
169 func (msm *MultistreamMuxer) removeHandler(protocol string) {
179 func (msm *MultistreamMuxer) Protocols() []string {
195 func (msm *MultistreamMuxer) findHandler(proto string) *Handler {
358 func (msm *MultistreamMuxer) Ls(w io.Writer) error {
368 func (msm *MultistreamMuxer) encodeLocalProtocols() ([]byte, error) {
[all …]
/dports/net-im/dendrite/dendrite-0.5.1/vendor/github.com/libp2p/go-libp2p/p2p/host/basic/
H A Dbasic_host.go124 MultistreamMuxer *msmux.MultistreamMuxer member