소스 검색

doc for InboundConnectionHandler

v2ray 9 년 전
부모
커밋
43f76d4704
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      proxy/proxy.go

+ 2 - 2
proxy/proxy.go

@@ -9,9 +9,9 @@ import (
 
 // A InboundConnectionHandler handles inbound network connections to V2Ray.
 type InboundConnectionHandler interface {
-	// Listen starts a InboundConnectionHandler by listen on a specific port. This method is called
-	// exactly once during runtime.
+	// Listen starts a InboundConnectionHandler by listen on a specific port.
 	Listen(port v2net.Port) error
+	// Close stops the handler to accepting anymore inbound connections.
 	Close()
 }