tools: add congestion marking parameters to nfdc face create
refs #4465
Change-Id: I5df5d6136f4729ad836a72f55531208d868da5f7
diff --git a/tools/nfdc/face-module.hpp b/tools/nfdc/face-module.hpp
index 6c190a1..9f0ac2a 100644
--- a/tools/nfdc/face-module.hpp
+++ b/tools/nfdc/face-module.hpp
@@ -1,6 +1,6 @@
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
-/**
- * Copyright (c) 2014-2017, Regents of the University of California,
+/*
+ * Copyright (c) 2014-2018, Regents of the University of California,
* Arizona Board of Regents,
* Colorado State University,
* University Pierre & Marie Curie, Sorbonne University,
@@ -28,6 +28,7 @@
#include "module.hpp"
#include "command-parser.hpp"
+#include "format-helpers.hpp"
namespace nfd {
namespace tools {
@@ -93,6 +94,14 @@
static void
formatItemText(std::ostream& os, const FaceStatus& item, bool wantMultiLine);
+ /** \brief print face response parameters to specified ostream
+ * \param os output stream
+ * \param ia ItemAttributes used to format output
+ * \param resp response control parameters to print
+ */
+ static void
+ printFaceParams(std::ostream& os, text::ItemAttributes& ia, const ControlParameters& resp);
+
private:
std::vector<FaceStatus> m_status;
};