Merge 69f8b08ac0
into a384bf5580
This commit is contained in:
commit
3cecef4e95
@ -632,10 +632,13 @@ func (cfg *StcpProxyConf) LoadFromFile(name string, section ini.Section) (err er
|
|||||||
}
|
}
|
||||||
|
|
||||||
tmpStr := section["role"]
|
tmpStr := section["role"]
|
||||||
|
if tmpStr == "" {
|
||||||
|
tmpStr = "server"
|
||||||
|
}
|
||||||
if tmpStr == "server" || tmpStr == "visitor" {
|
if tmpStr == "server" || tmpStr == "visitor" {
|
||||||
cfg.Role = tmpStr
|
cfg.Role = tmpStr
|
||||||
} else {
|
} else {
|
||||||
return fmt.Errorf("Parse conf error: incorrect role [%s]", tmpStr)
|
return fmt.Errorf("Parse conf error: proxy [%s] incorrect role [%s]", name, tmpStr)
|
||||||
}
|
}
|
||||||
|
|
||||||
cfg.Sk = section["sk"]
|
cfg.Sk = section["sk"]
|
||||||
@ -721,10 +724,13 @@ func (cfg *XtcpProxyConf) LoadFromFile(name string, section ini.Section) (err er
|
|||||||
}
|
}
|
||||||
|
|
||||||
tmpStr := section["role"]
|
tmpStr := section["role"]
|
||||||
|
if tmpStr == "" {
|
||||||
|
tmpStr = "server"
|
||||||
|
}
|
||||||
if tmpStr == "server" || tmpStr == "visitor" {
|
if tmpStr == "server" || tmpStr == "visitor" {
|
||||||
cfg.Role = tmpStr
|
cfg.Role = tmpStr
|
||||||
} else {
|
} else {
|
||||||
return fmt.Errorf("Parse conf error: incorrect role [%s]", tmpStr)
|
return fmt.Errorf("Parse conf error: proxy [%s] incorrect role [%s]", name, tmpStr)
|
||||||
}
|
}
|
||||||
|
|
||||||
cfg.Sk = section["sk"]
|
cfg.Sk = section["sk"]
|
||||||
|
Loading…
Reference in New Issue
Block a user