26const AdvertisePrefixCommand::RequestFormat AdvertisePrefixCommand::s_requestFormat =
28 .required(ndn::nfd::CONTROL_PARAMETER_NAME)
29 .optional(ndn::nfd::CONTROL_PARAMETER_COST)
30 .optional(ndn::nfd::CONTROL_PARAMETER_FLAGS);
31const AdvertisePrefixCommand::ResponseFormat AdvertisePrefixCommand::s_responseFormat =
33 .required(ndn::nfd::CONTROL_PARAMETER_NAME)
34 .optional(ndn::nfd::CONTROL_PARAMETER_COST)
35 .optional(ndn::nfd::CONTROL_PARAMETER_FLAGS);
37const WithdrawPrefixCommand::RequestFormat WithdrawPrefixCommand::s_requestFormat =
39 .required(ndn::nfd::CONTROL_PARAMETER_NAME)
40 .optional(ndn::nfd::CONTROL_PARAMETER_FLAGS);
41const WithdrawPrefixCommand::ResponseFormat WithdrawPrefixCommand::s_responseFormat =
43 .required(ndn::nfd::CONTROL_PARAMETER_NAME)
44 .optional(ndn::nfd::CONTROL_PARAMETER_FLAGS);