mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-05 09:47:56 -05:00
18 lines
310 B
Go
18 lines
310 B
Go
package environment
|
|
|
|
import "github.com/v2fly/v2ray-core/v4/common/log"
|
|
|
|
type ConnectionCapabilitySet interface {
|
|
ConnectionLogCapabilitySet
|
|
}
|
|
|
|
type ConnectionEnvironment interface {
|
|
ConnectionCapabilitySet
|
|
|
|
doNotImpl()
|
|
}
|
|
|
|
type ConnectionLogCapabilitySet interface {
|
|
RecordConnectionLog(msg log.Message)
|
|
}
|