mirror of https://github.com/XTLS/Xray-core
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
1.6 KiB
49 lines
1.6 KiB
// Package proxy contains all proxies used by Xray. |
|
// |
|
// To implement an inbound or outbound proxy, one needs to do the following: |
|
// 1. Implement the interface(s) below. |
|
// 2. Register a config creator through common.RegisterConfig. |
|
package proxy |
|
|
|
import ( |
|
"context" |
|
|
|
"github.com/xtls/xray-core/common/net" |
|
"github.com/xtls/xray-core/common/protocol" |
|
"github.com/xtls/xray-core/features/routing" |
|
"github.com/xtls/xray-core/transport" |
|
"github.com/xtls/xray-core/transport/internet" |
|
"github.com/xtls/xray-core/transport/internet/stat" |
|
) |
|
|
|
// An Inbound processes inbound connections. |
|
type Inbound interface { |
|
// Network returns a list of networks that this inbound supports. Connections with not-supported networks will not be passed into Process(). |
|
Network() []net.Network |
|
|
|
// Process processes a connection of given network. If necessary, the Inbound can dispatch the connection to an Outbound. |
|
Process(context.Context, net.Network, stat.Connection, routing.Dispatcher) error |
|
} |
|
|
|
// An Outbound process outbound connections. |
|
type Outbound interface { |
|
// Process processes the given connection. The given dialer may be used to dial a system outbound connection. |
|
Process(context.Context, *transport.Link, internet.Dialer) error |
|
} |
|
|
|
// UserManager is the interface for Inbounds and Outbounds that can manage their users. |
|
type UserManager interface { |
|
// AddUser adds a new user. |
|
AddUser(context.Context, *protocol.MemoryUser) error |
|
|
|
// RemoveUser removes a user by email. |
|
RemoveUser(context.Context, string) error |
|
} |
|
|
|
type GetInbound interface { |
|
GetInbound() Inbound |
|
} |
|
|
|
type GetOutbound interface { |
|
GetOutbound() Outbound |
|
}
|
|
|