mirror of
https://github.com/zr-hebo/sniffer-agent.git
synced 2025-08-10 14:14:10 +08:00
10 lines
208 B
Go
10 lines
208 B
Go
package session_dealer
|
|
|
|
import "github.com/zr-hebo/sniffer-agent/model"
|
|
|
|
type ConnSession interface {
|
|
ReadFromClient(bytes []byte)
|
|
ReadFromServer(bytes []byte)
|
|
GenerateQueryPiece() (qp model.QueryPiece)
|
|
}
|