tools: implement 'nfdc cs info' command

refs #4219

Change-Id: I4252878943c3f6c88f306f83f5023fffc82326b0
This commit is contained in:
Junxiao Shi
2018-01-09 21:25:15 +00:00
parent 3257af2823
commit 3160a3f820
10 changed files with 254 additions and 6 deletions
+1
View File
@@ -246,6 +246,7 @@ man_pages = [
('manpages/nfdc-status', 'nfdc-status', u'show NFD status', None, 1),
('manpages/nfdc-face', 'nfdc-face', u'show and manipulate NFD faces', None, 1),
('manpages/nfdc-route', 'nfdc-route', u'show and manipulate NFD routes', None, 1),
('manpages/nfdc-cs', 'nfdc-cs', u'show and manipulate NFD Content Store', None, 1),
('manpages/nfdc-strategy', 'nfdc-strategy', u'show and manipulate NFD strategy choices', None, 1),
('manpages/nfd-status', 'nfd-status', u'comprehensive report of NFD status', None, 1),
('manpages/nfd-status-http-server', 'nfd-status-http-server',
+14
View File
@@ -0,0 +1,14 @@
nfdc-cs
===========
SYNOPSIS
--------
| nfdc cs info
DESCRIPTION
-----------
The **nfdc cs info** command shows CS statistics information.
SEE ALSO
--------
nfd(1), nfdc(1)
+1
View File
@@ -18,6 +18,7 @@ The **nfdc status report** command prints a comprehensive report of NFD status,
- list of faces (individually available from **nfdc face list**)
- list of FIB entries (individually available from **nfdc fib list**)
- list of RIB entries (individually available from **nfdc route list**)
- CS statistics information (individually available from **nfdc cs info**)
- list of strategy choices (individually available from **nfdc strategy list**)
OPTIONS
+1 -1
View File
@@ -45,4 +45,4 @@ Show how to use ``nfdc face create`` command:
SEE ALSO
--------
nfdc-status(1), nfdc-face(1), nfdc-route(1), nfdc-strategy(1)
nfdc-status(1), nfdc-face(1), nfdc-route(1), nfdc-cs(1), nfdc-strategy(1)