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