1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-09 09:20:45 +00:00
v2fly/common/environment/connection.go
2022-01-02 15:16:23 +00:00

17 lines
309 B
Go

package environment
import "github.com/v2fly/v2ray-core/v5/common/log"
type ConnectionCapabilitySet interface {
ConnectionLogCapabilitySet
}
type ConnectionEnvironment interface {
ConnectionCapabilitySet
doNotImpl()
}
type ConnectionLogCapabilitySet interface {
RecordConnectionLog(msg log.Message)
}