This commit is contained in:
Darien Raymond 2017-02-10 16:38:32 +01:00
parent a32063dfb5
commit cc58f5cb8f
No known key found for this signature in database
GPG Key ID: 7251FFA14BB18169
1 changed files with 9 additions and 1 deletions

10
core.go
View File

@ -1,4 +1,12 @@
// Package core provides common definitions and functionalities of V2Ray.
// Package core provides an entry point to use V2Ray core functionalities.
//
// V2Ray makes it possible to accept incoming network connections with certain
// protocol, process the data, and send them through another connection with
// the same or a difference protocol on demand.
//
// It may be configured to work with multiple protocols at the same time, and
// uses the internal router to tunnel through different inbound and outbound
// connections.
package core
import (