All Downloads are FREE. Search and download functionalities are using the official Maven repository.

vendor.github.com.pion.transport.connctx.pipe.go Maven / Gradle / Ivy

There is a newer version: 2.9.1
Show newest version
package connctx

import (
	"net"
)

// Pipe creates piped pair of ConnCtx.
func Pipe() (ConnCtx, ConnCtx) {
	ca, cb := net.Pipe()
	return New(ca), New(cb)
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy