mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-04 09:17:32 -05:00
14 lines
217 B
Go
14 lines
217 B
Go
package http
|
|
|
|
func (sc *ServerConfig) HasAccount(username, password string) bool {
|
|
if sc.Accounts == nil {
|
|
return false
|
|
}
|
|
|
|
p, found := sc.Accounts[username]
|
|
if !found {
|
|
return false
|
|
}
|
|
return p == password
|
|
}
|