c5_labsci/zciyon/tcpserver.go
2026-01-27 00:52:00 +08:00

11 lines
203 B
Go

package zciyon
type CiyTCPServer interface {
Listen(address string) error
Accept() (CiyTCPClient, error)
Watch(fn func(byt []byte))
Send(byt []byte) error
Close() error
SetDeadline(t int) error
}