mirror of
https://github.com/cbeuw/Cloak.git
synced 2024-11-11 13:11:03 +00:00
9 lines
97 B
Go
9 lines
97 B
Go
package multiplex
|
|
|
|
import "io"
|
|
|
|
type recvBuffer interface {
|
|
io.ReadCloser
|
|
Write(Frame) error
|
|
}
|