abh / geodns

DNS server with per-client targeted responses
Apache License 2.0
1.39k stars 193 forks source link

Fix race referencing config #76

Closed abligh closed 9 years ago

abligh commented 9 years ago

Three data races existed referencing the Config item - these can be detected by running after building with 'go build -race' on go 1.4.2. This fixes them by adding an RWMutex to protect the config structure.

abh commented 9 years ago

Nice, thank you.