mirror of https://github.com/cbeuw/Cloak
Remove redundant config field
This commit is contained in:
parent
e1c879a478
commit
0f3b2232ab
|
|
@ -7,6 +7,5 @@
|
||||||
"RedirAddr":"204.79.197.200:443",
|
"RedirAddr":"204.79.197.200:443",
|
||||||
"PrivateKey":"EN5aPEpNBO+vw+BtFQY2OnK9bQU7rvEj5qmnmgwEtUc=",
|
"PrivateKey":"EN5aPEpNBO+vw+BtFQY2OnK9bQU7rvEj5qmnmgwEtUc=",
|
||||||
"AdminUID":"5nneblJy6lniPJfr81LuYQ==",
|
"AdminUID":"5nneblJy6lniPJfr81LuYQ==",
|
||||||
"DatabasePath":"userinfo.db",
|
"DatabasePath": "userinfo.db"
|
||||||
"BackupDirPath":""
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -13,13 +13,12 @@ import (
|
||||||
)
|
)
|
||||||
|
|
||||||
type rawConfig struct {
|
type rawConfig struct {
|
||||||
ProxyBook map[string]string
|
ProxyBook map[string]string
|
||||||
RedirAddr string
|
RedirAddr string
|
||||||
PrivateKey string
|
PrivateKey string
|
||||||
AdminUID string
|
AdminUID string
|
||||||
DatabasePath string
|
DatabasePath string
|
||||||
BackupDirPath string
|
CncMode bool
|
||||||
CncMode bool
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// State type stores the global state of the program
|
// State type stores the global state of the program
|
||||||
|
|
@ -72,6 +71,7 @@ func (sta *State) ParseConfig(conf string) (err error) {
|
||||||
}
|
}
|
||||||
|
|
||||||
if preParse.CncMode {
|
if preParse.CncMode {
|
||||||
|
//TODO: implement command & control mode
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
manager, err := MakeLocalManager(preParse.DatabasePath)
|
manager, err := MakeLocalManager(preParse.DatabasePath)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue