mirror of
https://github.com/cbeuw/Cloak.git
synced 2024-11-19 09:25:41 +00:00
9 lines
120 B
Go
9 lines
120 B
Go
package multiplex
|
|
|
|
import "io"
|
|
|
|
type recvBuffer interface {
|
|
io.ReadCloser
|
|
Write(Frame) (toBeClosed bool, err error)
|
|
}
|