Documentation ¶
Overview ¶
Package tcp provides a simple multiplexer over TCP.
Index ¶
Constants ¶
View Source
const ( // DefaultTimeout is the default length of time to wait for first byte. DefaultTimeout = 30 * time.Second )
Variables ¶
This section is empty.
Functions ¶
Types ¶
type Mux ¶
type Mux struct { // The amount of time to wait for the first header byte. Timeout time.Duration // Out-of-band error logger Logger *log.Logger // contains filtered or unexported fields }
Mux multiplexes a network connection.
func (*Mux) DefaultListener ¶ added in v1.0.0
DefaultListener will return a net.Listener that will pass-through any connections with non-registered values for the first byte of the connection. The connections returned from this listener's Accept() method will replay the first byte of the connection as a short first Read().
This can be used to pass to an HTTP server, so long as there are no conflicts with registered listener bytes and the first character of the HTTP request: 71 ('G') for GET, etc.
Click to show internal directories.
Click to hide internal directories.