package
0.0.0-20240720002214-37b2b8227b91
Repository: https://github.com/progrium/go-netstack.git
Documentation: pkg.go.dev

# Functions

NewPipe initializes and returns a pipe.
NewVFSPipe returns an initialized VFSPipe.
Splice reads up to count bytes from src and writes them to dst.
Tee reads up to count bytes from src and writes them to dst, without removing the read bytes from src.

# Constants

DefaultPipeSize is the system-wide default size of a pipe in bytes.
MaximumPipeSize is a hard limit on the maximum size of a pipe.
MinimumPipeSize is a hard limit of the minimum size of a pipe.

# Structs

Pipe is an encapsulation of a platform-independent pipe.
VFSPipe represents the actual pipe, analogous to an inode.
VFSPipeFD implements vfs.FileDescriptionImpl for pipes.