mgmt: declare cs/config command
refs #4050
Change-Id: I779d425d0ca89750cf923c84009c19b37eecc9cf
diff --git a/src/mgmt/nfd/control-command.hpp b/src/mgmt/nfd/control-command.hpp
index 97b0fa8..74f0bb1 100644
--- a/src/mgmt/nfd/control-command.hpp
+++ b/src/mgmt/nfd/control-command.hpp
@@ -1,6 +1,6 @@
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
-/**
- * Copyright (c) 2013-2017 Regents of the University of California.
+/*
+ * Copyright (c) 2013-2018 Regents of the University of California.
*
* This file is part of ndn-cxx library (NDN C++ library with eXperimental eXtensions).
*
@@ -148,9 +148,6 @@
applyDefaultsToRequest(ControlParameters& parameters) const override;
void
- validateRequest(const ControlParameters& parameters) const override;
-
- void
validateResponse(const ControlParameters& parameters) const override;
};
@@ -168,9 +165,6 @@
void
applyDefaultsToRequest(ControlParameters& parameters) const override;
- void
- validateRequest(const ControlParameters& parameters) const override;
-
/**
* \note This can only validate ControlParameters in a success response.
* Failure responses should be validated with validateRequest.
@@ -236,6 +230,18 @@
/**
* \ingroup management
+ * \brief represents a cs/config command
+ * \sa https://redmine.named-data.net/projects/nfd/wiki/CsMgmt#Update-config
+ */
+class CsConfigCommand : public ControlCommand
+{
+public:
+ CsConfigCommand();
+};
+
+
+/**
+ * \ingroup management
* \brief represents a strategy-choice/set command
* \sa https://redmine.named-data.net/projects/nfd/wiki/StrategyChoice#Set-the-strategy-for-a-namespace
*/