1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-26 01:15:38 +00:00
v2fly/proxy/proxy.go

62 lines
1.5 KiB
Go
Raw Normal View History

// Package proxy contains all proxies used by V2Ray.
2016-08-19 15:05:15 +00:00
package proxy
import (
2016-08-20 18:55:45 +00:00
v2net "v2ray.com/core/common/net"
"v2ray.com/core/common/protocol"
"v2ray.com/core/transport/internet"
"v2ray.com/core/transport/ray"
)
2016-03-06 15:36:08 +00:00
type HandlerState int
const (
HandlerStateStopped = HandlerState(0)
HandlerStateRunning = HandlerState(1)
)
2016-08-14 15:08:01 +00:00
type SessionInfo struct {
Source v2net.Destination
Destination v2net.Destination
User *protocol.User
2016-11-13 13:33:00 +00:00
Inbound *InboundHandlerMeta
2016-08-14 15:08:01 +00:00
}
2016-06-04 12:25:13 +00:00
type InboundHandlerMeta struct {
2016-08-12 21:37:21 +00:00
Tag string
Address v2net.Address
Port v2net.Port
AllowPassiveConnection bool
2016-10-02 21:43:58 +00:00
StreamSettings *internet.StreamConfig
2016-06-04 12:25:13 +00:00
}
type OutboundHandlerMeta struct {
2016-06-14 20:54:08 +00:00
Tag string
Address v2net.Address
2016-10-02 21:43:58 +00:00
StreamSettings *internet.StreamConfig
2016-11-10 22:41:28 +00:00
ProxySettings *internet.ProxyConfig
}
2016-11-27 20:39:09 +00:00
func (v *OutboundHandlerMeta) GetDialerOptions() internet.DialerOptions {
2016-11-10 22:41:28 +00:00
return internet.DialerOptions{
2016-11-27 20:39:09 +00:00
Stream: v.StreamSettings,
Proxy: v.ProxySettings,
2016-11-10 22:41:28 +00:00
}
2016-06-04 12:25:13 +00:00
}
2016-01-25 20:33:28 +00:00
// An InboundHandler handles inbound network connections to V2Ray.
type InboundHandler interface {
2016-06-03 22:38:22 +00:00
// Listen starts a InboundHandler.
Start() error
2016-01-06 21:39:56 +00:00
// Close stops the handler to accepting anymore inbound connections.
Close()
2016-01-19 22:41:40 +00:00
// Port returns the port that the handler is listening on.
Port() v2net.Port
}
2016-01-25 20:33:28 +00:00
// An OutboundHandler handles outbound network connection for V2Ray.
type OutboundHandler interface {
2016-01-02 22:32:18 +00:00
// Dispatch sends one or more Packets to its destination.
2017-01-04 11:34:01 +00:00
Dispatch(destination v2net.Destination, ray ray.OutboundRay)
}