/install/get_default_addresses -- make fields lowercase

This commit is contained in:
Eugene Bujak 2019-01-17 19:29:54 +03:00
parent c36a7895ad
commit f21aebd1cf
1 changed files with 6 additions and 8 deletions

View File

@ -695,15 +695,13 @@ func handleSafeSearchStatus(w http.ResponseWriter, r *http.Request) {
}
func handleGetDefaultAddresses(w http.ResponseWriter, r *http.Request) {
type ipport struct {
IP string `json:"ip"`
Port int `json:"port"`
}
data := struct {
Web struct {
IP string
Port int
}
DNS struct {
IP string
Port int
}
Web ipport `json:"web"`
DNS ipport `json:"dns"`
}{}
// TODO: replace mockup with actual data