mirror of
https://github.com/e1732a364fed/v2ray_simple.git
synced 2025-11-01 20:42:39 +08:00
19 lines
414 B
Go
19 lines
414 B
Go
//Package advLayer contains subpackages for Advanced Layer in VSI model.
|
|
package advLayer
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/hahahrfool/v2ray_simple/utils"
|
|
)
|
|
|
|
var ProtocolsMap = make(map[string]bool)
|
|
|
|
func PrintAllProtocolNames() {
|
|
fmt.Printf("===============================\nSupported Advanced Layer protocols:\n")
|
|
for _, v := range utils.GetMapSortedKeySlice(ProtocolsMap) {
|
|
fmt.Print(v)
|
|
fmt.Print("\n")
|
|
}
|
|
}
|