mirror of
				https://github.com/v2fly/v2ray-core.git
				synced 2025-11-04 03:39:24 +00: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
 | 
						|
}
 |