diff --git a/server.go b/server.go index 6359505..015ecaf 100644 --- a/server.go +++ b/server.go @@ -75,11 +75,11 @@ func (s *Server) handleConn(conn *net.TCPConn) { ////////////////////////////////////////////////////////////////////////// type options struct { - Port uint `json:port` - Address string `json:address` - Registry string `json:registry` + Port uint `json:"port"` + Address string `json:"address"` + Registry string `json:"registry"` Datapath string - Header string `json:header` + Header string `json:"header"` } func parseFlags() options {