David Fifield 2020-01-28 02:29:34 -07:00
parent 904af9cb8a
commit 222ab3d85a
7 changed files with 1050 additions and 0 deletions

View file

@ -0,0 +1,13 @@
// Package turbotunnel provides support for overlaying a virtual net.PacketConn
// on some other network carrier.
//
// https://github.com/net4people/bbs/issues/9
package turbotunnel
import "errors"
// The size of receive and send queues.
const queueSize = 32
var errClosedPacketConn = errors.New("operation on closed connection")
var errNotImplemented = errors.New("not implemented")