1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-07 05:44:28 -04:00
v2fly/common/environment/connection.go

17 lines
309 B
Go
Raw Normal View History

2021-06-24 11:28:08 -04:00
package environment
import "github.com/v2fly/v2ray-core/v5/common/log"
2021-06-24 11:28:08 -04:00
type ConnectionCapabilitySet interface {
ConnectionLogCapabilitySet
}
type ConnectionEnvironment interface {
ConnectionCapabilitySet
doNotImpl()
}
type ConnectionLogCapabilitySet interface {
RecordConnectionLog(msg log.Message)
}