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