@@ -15,6 +15,7 @@ import (
15
15
enc "github.com/named-data/ndnd/std/encoding"
16
16
mgmt "github.com/named-data/ndnd/std/ndn/mgmt_2022"
17
17
spec "github.com/named-data/ndnd/std/ndn/spec_2022"
18
+ "github.com/named-data/ndnd/std/utils"
18
19
)
19
20
20
21
// ContentStoreModule is the module that handles Content Store Management.
@@ -61,26 +62,24 @@ func (c *ContentStoreModule) handleIncomingInterest(interest *spec.Interest, pit
61
62
}
62
63
63
64
func (c * ContentStoreModule ) config (interest * spec.Interest , pitToken []byte , inFace uint64 ) {
64
- var response * mgmt.ControlResponse
65
-
66
65
if len (interest .Name ()) < len (LOCAL_PREFIX )+ 3 {
67
66
// Name not long enough to contain ControlParameters
68
67
core .LogWarn (c , "Missing ControlParameters in " , interest .Name ())
69
- response = makeControlResponse (400 , "ControlParameters is incorrect" , nil )
68
+ response : = makeControlResponse (400 , "ControlParameters is incorrect" , nil )
70
69
c .manager .sendResponse (response , interest , pitToken , inFace )
71
70
return
72
71
}
73
72
74
73
params := decodeControlParameters (c , interest )
75
74
if params == nil {
76
- response = makeControlResponse (400 , "ControlParameters is incorrect" , nil )
75
+ response : = makeControlResponse (400 , "ControlParameters is incorrect" , nil )
77
76
c .manager .sendResponse (response , interest , pitToken , inFace )
78
77
return
79
78
}
80
79
81
80
if (params .Flags == nil && params .Mask != nil ) || (params .Flags != nil && params .Mask == nil ) {
82
81
core .LogWarn (c , "Flags and Mask fields must either both be present or both be not present" )
83
- response = makeControlResponse (409 , "ControlParameters are incorrect" , nil )
82
+ response : = makeControlResponse (409 , "ControlParameters are incorrect" , nil )
84
83
c .manager .sendResponse (response , interest , pitToken , inFace )
85
84
return
86
85
}
@@ -104,12 +103,10 @@ func (c *ContentStoreModule) config(interest *spec.Interest, pitToken []byte, in
104
103
}
105
104
}
106
105
107
- responseParams := map [string ]any {
108
- "Capacity" : uint64 (table .CsCapacity ()),
109
- "Flags" : c .getFlags (),
110
- }
111
-
112
- response = makeControlResponse (200 , "OK" , responseParams )
106
+ response := makeControlResponse (200 , "OK" , & mgmt.ControlArgs {
107
+ Capacity : utils .IdPtr (uint64 (table .CsCapacity ())),
108
+ Flags : utils .IdPtr (c .getFlags ()),
109
+ })
113
110
c .manager .sendResponse (response , interest , pitToken , inFace )
114
111
}
115
112
0 commit comments