mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2024-11-22 04:55:33 +03:00
- clients: fix race introduced by commit 07db927; update tech doc
This commit is contained in:
parent
07db927246
commit
1fcb69d3a9
3 changed files with 6 additions and 6 deletions
|
@ -526,7 +526,7 @@ Notes:
|
|||
|
||||
* If `use_global_settings` is true, then DNS responses for this client are processed and filtered using global settings.
|
||||
|
||||
* If `use_global_settings` is false, then the client-specific settings are used to override (disable) global settings. For example, if global setting `parental_enabled` is true, then per-client setting `parental_enabled:false` can disable Parental Control for this specific client.
|
||||
* If `use_global_settings` is false, then the client-specific settings are used to override (enable or disable) global settings.
|
||||
|
||||
|
||||
### Get list of clients
|
||||
|
|
|
@ -89,13 +89,13 @@ func clientExists(ip string) bool {
|
|||
}
|
||||
|
||||
// Search for a client by IP
|
||||
func clientFind(ip string) (*Client, bool) {
|
||||
func clientFind(ip string) (Client, bool) {
|
||||
clients.lock.Lock()
|
||||
defer clients.lock.Unlock()
|
||||
|
||||
c, ok := clients.ipIndex[ip]
|
||||
if ok {
|
||||
return c, true
|
||||
return *c, true
|
||||
}
|
||||
|
||||
for _, c = range clients.list {
|
||||
|
@ -109,12 +109,12 @@ func clientFind(ip string) (*Client, bool) {
|
|||
continue
|
||||
}
|
||||
if ip == ipAddr.String() {
|
||||
return c, true
|
||||
return *c, true
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return nil, false
|
||||
return Client{}, false
|
||||
}
|
||||
|
||||
// Check if Client object's fields are correct
|
||||
|
|
2
dns.go
2
dns.go
|
@ -216,7 +216,7 @@ func generateServerConfig() dnsforward.ServerConfig {
|
|||
// If a client has his own settings, apply them
|
||||
func applyClientSettings(clientAddr string, setts *dnsfilter.RequestFilteringSettings) {
|
||||
c, ok := clientFind(clientAddr)
|
||||
if !ok || c == nil || !c.UseOwnSettings {
|
||||
if !ok || !c.UseOwnSettings {
|
||||
return
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue