mirror of
				https://github.com/v2fly/v2ray-core.git
				synced 2025-11-04 11:49:16 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			25 lines
		
	
	
		
			331 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			331 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package mtproto
 | 
						|
 | 
						|
import (
 | 
						|
	"v2ray.com/core/common/protocol"
 | 
						|
)
 | 
						|
 | 
						|
func (a *Account) Equals(another protocol.Account) bool {
 | 
						|
	aa, ok := another.(*Account)
 | 
						|
	if !ok {
 | 
						|
		return false
 | 
						|
	}
 | 
						|
 | 
						|
	if len(a.Secret) != len(aa.Secret) {
 | 
						|
		return false
 | 
						|
	}
 | 
						|
 | 
						|
	for i, v := range a.Secret {
 | 
						|
		if v != aa.Secret[i] {
 | 
						|
			return false
 | 
						|
		}
 | 
						|
	}
 | 
						|
 | 
						|
	return true
 | 
						|
}
 |