2018-10-11 15:14:53 -04:00
|
|
|
package inbound
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
|
|
|
|
"v2ray.com/core/common"
|
|
|
|
"v2ray.com/core/common/net"
|
|
|
|
"v2ray.com/core/features"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Handler is the interface for handlers that process inbound connections.
|
2018-12-03 16:44:42 -05:00
|
|
|
//
|
|
|
|
// v2ray:api:stable
|
2018-10-11 15:14:53 -04:00
|
|
|
type Handler interface {
|
|
|
|
common.Runnable
|
|
|
|
// The tag of this handler.
|
|
|
|
Tag() string
|
|
|
|
|
2020-11-20 02:18:44 -05:00
|
|
|
// Deprecated: Do not use in new code.
|
2018-10-11 15:14:53 -04:00
|
|
|
GetRandomInboundProxy() (interface{}, net.Port, int)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Manager is a feature that manages InboundHandlers.
|
2018-12-03 16:44:42 -05:00
|
|
|
//
|
|
|
|
// v2ray:api:stable
|
2018-10-11 15:14:53 -04:00
|
|
|
type Manager interface {
|
|
|
|
features.Feature
|
|
|
|
// GetHandlers returns an InboundHandler for the given tag.
|
|
|
|
GetHandler(ctx context.Context, tag string) (Handler, error)
|
2018-10-12 17:57:56 -04:00
|
|
|
// AddHandler adds the given handler into this Manager.
|
2018-10-11 15:14:53 -04:00
|
|
|
AddHandler(ctx context.Context, handler Handler) error
|
|
|
|
|
2018-10-12 17:57:56 -04:00
|
|
|
// RemoveHandler removes a handler from Manager.
|
2018-10-11 15:14:53 -04:00
|
|
|
RemoveHandler(ctx context.Context, tag string) error
|
|
|
|
}
|
2018-10-12 17:57:56 -04:00
|
|
|
|
2018-10-13 06:09:58 -04:00
|
|
|
// ManagerType returns the type of Manager interface. Can be used for implementing common.HasType.
|
2018-12-03 16:44:42 -05:00
|
|
|
//
|
|
|
|
// v2ray:api:stable
|
2018-10-12 17:57:56 -04:00
|
|
|
func ManagerType() interface{} {
|
|
|
|
return (*Manager)(nil)
|
|
|
|
}
|