2015-09-07 10:00:46 +00:00
|
|
|
// Package core provides common definitions and functionalities of V2Ray.
|
|
|
|
package core
|
2015-09-16 14:05:59 +00:00
|
|
|
|
2015-09-29 09:52:34 +00:00
|
|
|
var (
|
2015-10-09 15:52:55 +00:00
|
|
|
version = "0.8"
|
2015-09-29 09:52:34 +00:00
|
|
|
build = "Custom"
|
|
|
|
)
|
|
|
|
|
2015-09-16 14:05:59 +00:00
|
|
|
const (
|
2015-09-18 09:59:36 +00:00
|
|
|
Codename = "Post Apocalypse"
|
2015-09-18 12:59:02 +00:00
|
|
|
Intro = "A stable and unbreakable connection for everyone."
|
2015-09-16 14:05:59 +00:00
|
|
|
)
|
2015-09-29 09:52:34 +00:00
|
|
|
|
|
|
|
func Version() string {
|
|
|
|
return version
|
|
|
|
}
|
|
|
|
|
|
|
|
func Build() string {
|
|
|
|
return build
|
|
|
|
}
|