From e11088aad5686949b01b5c15a5cad20f00f355b8 Mon Sep 17 00:00:00 2001 From: v2ray Date: Mon, 25 Jan 2016 21:33:28 +0100 Subject: [PATCH] update doc --- proxy/proxy.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/proxy/proxy.go b/proxy/proxy.go index 77b6ce2a0..803ca5af0 100644 --- a/proxy/proxy.go +++ b/proxy/proxy.go @@ -7,9 +7,9 @@ import ( "github.com/v2ray/v2ray-core/transport/ray" ) -// A InboundConnectionHandler handles inbound network connections to V2Ray. +// An InboundHandler handles inbound network connections to V2Ray. type InboundHandler interface { - // Listen starts a InboundConnectionHandler by listen on a specific port. + // Listen starts a InboundHandler by listen on a specific port. Listen(port v2net.Port) error // Close stops the handler to accepting anymore inbound connections. Close() @@ -17,7 +17,7 @@ type InboundHandler interface { Port() v2net.Port } -// An OutboundConnectionHandler handles outbound network connection for V2Ray. +// An OutboundHandler handles outbound network connection for V2Ray. type OutboundHandler interface { // Dispatch sends one or more Packets to its destination. Dispatch(firstPacket v2net.Packet, ray ray.OutboundRay) error