Junxiao Shi | b2ff573 | 2015-06-26 14:09:02 -0700 | [diff] [blame] | 1 | # ndn-dissect |
| 2 | |
| 3 | **ndn-dissect** is an NDN packet format inspector. |
| 4 | It reads zero or more NDN packets from either an input file or the standard input, |
| 5 | and displays the Type-Length-Value (TLV) structure of those packets on the standard output. |
| 6 | |
| 7 | Usage example: |
| 8 | |
| 9 | 1. start NFD on local machine |
| 10 | 2. execute `echo 'HELLO WORLD' | ndnpoke ndn:/localhost/demo/hello` |
| 11 | 3. on another console, execute `ndnpeek ndn:/localhost/demo/hello | ndn-dissect` |
| 12 | |
| 13 | For more information, consult the manpage. |