Davide Pesavento | 6cc1dfb | 2019-04-27 14:10:56 -0400 | [diff] [blame] | 1 | # Release Notes |
| 2 | |
Davide Pesavento | 3b4ee2f | 2022-12-31 01:55:06 -0500 | [diff] [blame] | 3 | ## Version 22.12 |
| 4 | |
| 5 | The minimum build requirements have been increased as follows: |
Davide Pesavento | 5b9431d | 2024-07-14 17:38:04 -0400 | [diff] [blame^] | 6 | |
Davide Pesavento | 3b4ee2f | 2022-12-31 01:55:06 -0500 | [diff] [blame] | 7 | - Either GCC >= 7.4.0 or Clang >= 6.0 is required on Linux |
| 8 | - On macOS, Xcode 11.3 or later is recommended; older versions may still work but are |
| 9 | not officially supported |
| 10 | - Boost >= 1.65.1 is required on all platforms |
| 11 | - Sphinx 4.0 or later is required to build the manual pages |
| 12 | |
| 13 | chunks: |
Davide Pesavento | 5b9431d | 2024-07-14 17:38:04 -0400 | [diff] [blame^] | 14 | |
Davide Pesavento | 3b4ee2f | 2022-12-31 01:55:06 -0500 | [diff] [blame] | 15 | - Avoid excess window decrease in certain conditions (Issue #5202) |
| 16 | - Use ndn-cxx's `Segmenter` class (Issue #4702) |
| 17 | |
| 18 | dissect: |
Davide Pesavento | 5b9431d | 2024-07-14 17:38:04 -0400 | [diff] [blame^] | 19 | |
Davide Pesavento | 3b4ee2f | 2022-12-31 01:55:06 -0500 | [diff] [blame] | 20 | - Recognize several TLV elements that appear in `Certificate` and `SafeBag` |
| 21 | - Remove support for obsolete TLV types |
| 22 | |
| 23 | dissect-wireshark: |
Davide Pesavento | 5b9431d | 2024-07-14 17:38:04 -0400 | [diff] [blame^] | 24 | |
Davide Pesavento | 3b4ee2f | 2022-12-31 01:55:06 -0500 | [diff] [blame] | 25 | - Expose `type`, `len`, and `bin` fields |
| 26 | |
| 27 | build system: |
Davide Pesavento | 5b9431d | 2024-07-14 17:38:04 -0400 | [diff] [blame^] | 28 | |
Davide Pesavento | 3b4ee2f | 2022-12-31 01:55:06 -0500 | [diff] [blame] | 29 | - Switch to C++17 |
| 30 | - macOS 12 (Monterey) and 13 (Ventura) running on arm64 are now supported out-of-the-box |
| 31 | (Issue #5135) |
| 32 | - CentOS Stream 9 is now supported; CentOS 8 has been dropped (Issue #5181) |
| 33 | - Stop using the `gold` linker on Linux; prefer instead linking with `lld` if installed |
| 34 | - Upgrade `waf` to version 2.0.24 |
| 35 | |
Davide Pesavento | ebea909 | 2022-02-18 11:30:32 -0500 | [diff] [blame] | 36 | ## Version 22.02 |
| 37 | |
Davide Pesavento | 3b4ee2f | 2022-12-31 01:55:06 -0500 | [diff] [blame] | 38 | Starting with this release, ndn-tools switched to a date-based versioning scheme: |
| 39 | `YEAR.MONTH[.PATCH]` (`YY.0M[.MICRO]` in [CalVer](https://calver.org/) notation). |
Davide Pesavento | ebea909 | 2022-02-18 11:30:32 -0500 | [diff] [blame] | 40 | |
| 41 | chunks: |
Davide Pesavento | 5b9431d | 2024-07-14 17:38:04 -0400 | [diff] [blame^] | 42 | |
Davide Pesavento | ebea909 | 2022-02-18 11:30:32 -0500 | [diff] [blame] | 43 | - Add `--naming-convention` command-line option (Issue #5109) |
| 44 | - Increase the default segment size to 8000 bytes |
| 45 | |
| 46 | dissect: |
Davide Pesavento | 5b9431d | 2024-07-14 17:38:04 -0400 | [diff] [blame^] | 47 | |
Davide Pesavento | ebea909 | 2022-02-18 11:30:32 -0500 | [diff] [blame] | 48 | - Support `InterestSignature` fields and more types of name components |
| 49 | - The `Content` field is no longer dissected by default; use the new `--content` option |
| 50 | to enable it |
| 51 | - Minor cosmetic improvements to the tool output |
| 52 | |
| 53 | dissect-wireshark: |
Davide Pesavento | 5b9431d | 2024-07-14 17:38:04 -0400 | [diff] [blame^] | 54 | |
Davide Pesavento | ebea909 | 2022-02-18 11:30:32 -0500 | [diff] [blame] | 55 | - Remove support for obsolete TLV elements |
| 56 | - Recognize `ForwardingHint` (Issue #4185) |
| 57 | - Recognize `ParametersSha256DigestComponent` |
| 58 | - Fix decoding of several TLV elements such as `HopLimit` and `PitToken` |
| 59 | - Update the TLV type of `IncomingFaceId` (Issue #5185) |
| 60 | |
| 61 | peek: |
Davide Pesavento | 5b9431d | 2024-07-14 17:38:04 -0400 | [diff] [blame^] | 62 | |
Davide Pesavento | ebea909 | 2022-02-18 11:30:32 -0500 | [diff] [blame] | 63 | - Replace `--link-file` option with `--fwhint` and adapt to the new `ForwardingHint` |
| 64 | format (Issues #4207, #5187) |
| 65 | |
| 66 | poke: |
Davide Pesavento | 5b9431d | 2024-07-14 17:38:04 -0400 | [diff] [blame^] | 67 | |
Davide Pesavento | ebea909 | 2022-02-18 11:30:32 -0500 | [diff] [blame] | 68 | - Remove deprecated `--force` option; use `--unsolicited` instead |
| 69 | - Remove deprecated `--identity` and `--digest` options; use `--signing-info` instead |
| 70 | - Change the short form of `--freshness` to `-f` |
| 71 | |
| 72 | pingserver: |
Davide Pesavento | 5b9431d | 2024-07-14 17:38:04 -0400 | [diff] [blame^] | 73 | |
Davide Pesavento | ebea909 | 2022-02-18 11:30:32 -0500 | [diff] [blame] | 74 | - Remove deprecated `-x` alias for the `--freshness` option |
| 75 | |
| 76 | build system: |
Davide Pesavento | 5b9431d | 2024-07-14 17:38:04 -0400 | [diff] [blame^] | 77 | |
Davide Pesavento | ebea909 | 2022-02-18 11:30:32 -0500 | [diff] [blame] | 78 | - Upgrade `waf` to version 2.0.23 |
| 79 | |
Eric Newberry | 374f4e4 | 2020-10-04 14:15:39 -0700 | [diff] [blame] | 80 | ## Version 0.7.1 |
| 81 | |
| 82 | The build requirements have been increased to require Clang >= 4.0, Xcode >= 9.0, and Python >= 3.6. |
| 83 | Meanwhile, it is *recommended* to use GCC >= 7.4.0 and Boost >= 1.65.1. |
| 84 | |
| 85 | This release contains minor build fixes and code cleanups. |
| 86 | |
Davide Pesavento | 6ab7f91 | 2020-01-13 19:14:02 -0500 | [diff] [blame] | 87 | ## Version 0.7 |
| 88 | |
| 89 | chunks: |
Davide Pesavento | 5b9431d | 2024-07-14 17:38:04 -0400 | [diff] [blame^] | 90 | |
Davide Pesavento | 6ab7f91 | 2020-01-13 19:14:02 -0500 | [diff] [blame] | 91 | - Add `--no-version-discovery` option to ndncatchunks (Issue #5021) |
| 92 | - Improve CUBIC performance on lossy networks (Issue #5036) |
| 93 | - Switch to ndn-cxx's `RttEstimatorWithStats` class (Issue #4887) |
| 94 | - Remove previously deprecated options `-d` and `-t` from ndncatchunks |
| 95 | |
| 96 | ping: |
Davide Pesavento | 5b9431d | 2024-07-14 17:38:04 -0400 | [diff] [blame^] | 97 | |
Davide Pesavento | 6ab7f91 | 2020-01-13 19:14:02 -0500 | [diff] [blame] | 98 | - Change the short form of ndnpingserver's `--freshness` option to `-f`, |
| 99 | for consistency with ndnputchunks |
| 100 | |
| 101 | peek: |
Davide Pesavento | 5b9431d | 2024-07-14 17:38:04 -0400 | [diff] [blame^] | 102 | |
Davide Pesavento | 6ab7f91 | 2020-01-13 19:14:02 -0500 | [diff] [blame] | 103 | - Add `--app-params`, `--app-params-file`, and `--hop-limit` options |
| 104 | - The `--link-file` option now expects a raw binary file |
| 105 | - Print Data name and Nack reason if `--verbose` is specified |
| 106 | - Code cleanup |
| 107 | - Manual page improvements |
| 108 | |
| 109 | poke: |
Davide Pesavento | 5b9431d | 2024-07-14 17:38:04 -0400 | [diff] [blame^] | 110 | |
Davide Pesavento | 6ab7f91 | 2020-01-13 19:14:02 -0500 | [diff] [blame] | 111 | - Add `--signing-info` option, replacing `--digest` and `--identity` which are |
| 112 | now deprecated |
| 113 | - Add `--verbose` option |
| 114 | - Wait indefinitely if `--timeout` is not specified |
| 115 | - The program now exits with status 3 when a timeout occurs and with status 5 |
| 116 | if prefix registration fails |
| 117 | - Rename `--force` option to `--unsolicited` |
| 118 | - Code cleanup |
| 119 | - Major rewrite of the manual page |
| 120 | |
Davide Pesavento | 6cc1dfb | 2019-04-27 14:10:56 -0400 | [diff] [blame] | 121 | ## Version 0.6.4 |
| 122 | |
| 123 | chunks: |
Davide Pesavento | 5b9431d | 2024-07-14 17:38:04 -0400 | [diff] [blame^] | 124 | |
Davide Pesavento | 6cc1dfb | 2019-04-27 14:10:56 -0400 | [diff] [blame] | 125 | - Add metadata-based version discovery and remove iterative discovery (Issue #4556) |
| 126 | - Remove manual selection of version discovery method via `-d` option (Issue #4832) |
| 127 | - Implement CUBIC congestion window adaptation in ndncatchunks (Issue #4861) |
| 128 | - Increase the default retransmission limit from 3 to 15 (Issue #4861) |
| 129 | - Improve stats printed by ndncatchunks after transfer completes (Issue #4603) |
| 130 | - Add manual page for ndnputchunks |
| 131 | |
| 132 | dissect & dissect-wireshark: |
Davide Pesavento | 5b9431d | 2024-07-14 17:38:04 -0400 | [diff] [blame^] | 133 | |
Davide Pesavento | 6cc1dfb | 2019-04-27 14:10:56 -0400 | [diff] [blame] | 134 | - Follow packet specification changes to renumber the `Parameters` element and |
| 135 | rename it to `ApplicationParameters` (Issues #4658, #4780) |
| 136 | |
| 137 | dump: |
Davide Pesavento | 5b9431d | 2024-07-14 17:38:04 -0400 | [diff] [blame^] | 138 | |
Davide Pesavento | 6cc1dfb | 2019-04-27 14:10:56 -0400 | [diff] [blame] | 139 | - Fix compilation on CentOS 7 (Issue #4852) |
| 140 | |
| 141 | pib: |
Davide Pesavento | 5b9431d | 2024-07-14 17:38:04 -0400 | [diff] [blame^] | 142 | |
Davide Pesavento | 6cc1dfb | 2019-04-27 14:10:56 -0400 | [diff] [blame] | 143 | - Completely remove this obsolete and unmaintained tool (Issue #4205) |
Alexander Afanasyev | 339161a | 2016-10-27 22:41:16 +0000 | [diff] [blame] | 144 | |
Alexander Afanasyev | d5449e5 | 2019-01-29 09:32:56 -0500 | [diff] [blame] | 145 | ## Version 0.6.3 |
| 146 | |
| 147 | chunks: |
Davide Pesavento | 5b9431d | 2024-07-14 17:38:04 -0400 | [diff] [blame^] | 148 | |
Alexander Afanasyev | d5449e5 | 2019-01-29 09:32:56 -0500 | [diff] [blame] | 149 | - Fix impossible RTT values (Issue #4604) |
| 150 | - Add support for RDR metadata in ndnputchunks (Issue #4556) |
| 151 | - Use `PendingInterestHandle` and `RegisteredPrefixHandle` (Issues #4316, #3919) |
| 152 | |
| 153 | ping: |
Davide Pesavento | 5b9431d | 2024-07-14 17:38:04 -0400 | [diff] [blame^] | 154 | |
Alexander Afanasyev | d5449e5 | 2019-01-29 09:32:56 -0500 | [diff] [blame] | 155 | - Add systemd unit file for ndnpingserver (Issue #4594) |
| 156 | - Use `PendingInterestHandle` and `RegisteredPrefixHandle` (Issues #4316, #3919) |
| 157 | |
| 158 | poke: |
Davide Pesavento | 5b9431d | 2024-07-14 17:38:04 -0400 | [diff] [blame^] | 159 | |
Alexander Afanasyev | d5449e5 | 2019-01-29 09:32:56 -0500 | [diff] [blame] | 160 | - Use `PendingInterestHandle` and `RegisteredPrefixHandle` (Issues #4316, #3919) |
| 161 | |
Davide Pesavento | ebea909 | 2022-02-18 11:30:32 -0500 | [diff] [blame] | 162 | build system: |
Davide Pesavento | 5b9431d | 2024-07-14 17:38:04 -0400 | [diff] [blame^] | 163 | |
Davide Pesavento | ebea909 | 2022-02-18 11:30:32 -0500 | [diff] [blame] | 164 | - Upgrade `waf` to version 2.0.14 and other improvements |
Alexander Afanasyev | d5449e5 | 2019-01-29 09:32:56 -0500 | [diff] [blame] | 165 | |
Alexander Afanasyev | a8b03df | 2018-09-16 21:06:07 -0400 | [diff] [blame] | 166 | ## Version 0.6.2 |
| 167 | |
| 168 | The build requirements have been upgraded to gcc >= 5.3 or clang >= 3.6, boost >= 1.58, |
| 169 | openssl >= 1.0.2. This effectively drops support for all versions of Ubuntu older than 16.04 |
| 170 | that use distribution-provided compilers and packages. |
| 171 | |
| 172 | The compilation now uses the C++14 standard. |
| 173 | |
Davide Pesavento | 6cc1dfb | 2019-04-27 14:10:56 -0400 | [diff] [blame] | 174 | chunks: |
Davide Pesavento | 5b9431d | 2024-07-14 17:38:04 -0400 | [diff] [blame^] | 175 | |
Davide Pesavento | 6cc1dfb | 2019-04-27 14:10:56 -0400 | [diff] [blame] | 176 | - Fix AIMD hanging with files smaller than the chunk size (Issue #4439) |
| 177 | |
Alexander Afanasyev | a8b03df | 2018-09-16 21:06:07 -0400 | [diff] [blame] | 178 | dissect-wireshark: |
Davide Pesavento | 5b9431d | 2024-07-14 17:38:04 -0400 | [diff] [blame^] | 179 | |
Davide Pesavento | 6cc1dfb | 2019-04-27 14:10:56 -0400 | [diff] [blame] | 180 | - Show `Name` and `FinalBlockId` as URIs (Issue #3106) |
Alexander Afanasyev | a8b03df | 2018-09-16 21:06:07 -0400 | [diff] [blame] | 181 | - Improve NDNLPv2 support (Issue #4463) |
| 182 | - Add support for dissecting PPP frames |
| 183 | |
| 184 | dump: |
Davide Pesavento | 5b9431d | 2024-07-14 17:38:04 -0400 | [diff] [blame^] | 185 | |
Alexander Afanasyev | a8b03df | 2018-09-16 21:06:07 -0400 | [diff] [blame] | 186 | - Remove dependency on Boost.Regex |
| 187 | - Stop using tcpdump headers files |
| 188 | - Compile pcap filter with optimizations enabled |
| 189 | - Capture in promiscuous mode by default, add an option to disable it |
| 190 | - Add `-t` option to suppress printing per-packet timestamp |
| 191 | - Properly handle exceptions thrown by `lp::Packet::wireDecode()` (Issue #3943) |
Davide Pesavento | 6cc1dfb | 2019-04-27 14:10:56 -0400 | [diff] [blame] | 192 | - Add UDP port 56363 to the default pcap filter |
| 193 | - Stricter parsing of IP/TCP/UDP headers |
Alexander Afanasyev | a8b03df | 2018-09-16 21:06:07 -0400 | [diff] [blame] | 194 | - Add IPv6 support |
| 195 | - Code cleanup |
| 196 | |
| 197 | poke: |
Davide Pesavento | 5b9431d | 2024-07-14 17:38:04 -0400 | [diff] [blame^] | 198 | |
Davide Pesavento | 6cc1dfb | 2019-04-27 14:10:56 -0400 | [diff] [blame] | 199 | - Use `Face::unsetInterestFilter` instead of `shutdown` (Issue #4642) |
Alexander Afanasyev | a8b03df | 2018-09-16 21:06:07 -0400 | [diff] [blame] | 200 | - Improve unit testing (Issue #3740) |
| 201 | |
Alexander Afanasyev | a8b03df | 2018-09-16 21:06:07 -0400 | [diff] [blame] | 202 | ping: |
Davide Pesavento | 5b9431d | 2024-07-14 17:38:04 -0400 | [diff] [blame^] | 203 | |
Alexander Afanasyev | a8b03df | 2018-09-16 21:06:07 -0400 | [diff] [blame] | 204 | - Add `--quiet` option to ndnpingserver (Issue #4673) |
Davide Pesavento | 6cc1dfb | 2019-04-27 14:10:56 -0400 | [diff] [blame] | 205 | - Set `CanBePrefix=false` in Interests sent by ndnping (Issue #4581) |
Alexander Afanasyev | a8b03df | 2018-09-16 21:06:07 -0400 | [diff] [blame] | 206 | - Code cleanup |
| 207 | |
Davide Pesavento | 4a43e87 | 2018-05-03 22:10:56 -0400 | [diff] [blame] | 208 | ## Version 0.6.1 |
| 209 | |
| 210 | chunks: |
Davide Pesavento | 5b9431d | 2024-07-14 17:38:04 -0400 | [diff] [blame^] | 211 | |
Davide Pesavento | 4a43e87 | 2018-05-03 22:10:56 -0400 | [diff] [blame] | 212 | - Show correct packet loss stats in final summary (Issue #4437) |
| 213 | - Avoid printing meaningless values when no RTT measurements are available (Issue #4551) |
| 214 | |
| 215 | dissect: |
Davide Pesavento | 5b9431d | 2024-07-14 17:38:04 -0400 | [diff] [blame^] | 216 | |
Davide Pesavento | 4a43e87 | 2018-05-03 22:10:56 -0400 | [diff] [blame] | 217 | - Recognize `CanBePrefix`, `HopLimit`, and `Parameters` TLV elements (Issue #4590) |
| 218 | |
| 219 | dissect-wireshark: |
Davide Pesavento | 5b9431d | 2024-07-14 17:38:04 -0400 | [diff] [blame^] | 220 | |
Davide Pesavento | 4a43e87 | 2018-05-03 22:10:56 -0400 | [diff] [blame] | 221 | - Recognize `CanBePrefix`, `HopLimit`, and `Parameters` TLV elements (Issue #4517) |
| 222 | |
| 223 | peek: |
Davide Pesavento | 5b9431d | 2024-07-14 17:38:04 -0400 | [diff] [blame^] | 224 | |
Davide Pesavento | 6cc1dfb | 2019-04-27 14:10:56 -0400 | [diff] [blame] | 225 | - Drop `Selectors` support (Issue #4571) |
Davide Pesavento | 4a43e87 | 2018-05-03 22:10:56 -0400 | [diff] [blame] | 226 | - Add `-P/--prefix` option to set `CanBePrefix` in the Interest packet |
| 227 | |
Davide Pesavento | ebea909 | 2022-02-18 11:30:32 -0500 | [diff] [blame] | 228 | build system: |
Davide Pesavento | 5b9431d | 2024-07-14 17:38:04 -0400 | [diff] [blame^] | 229 | |
Davide Pesavento | ebea909 | 2022-02-18 11:30:32 -0500 | [diff] [blame] | 230 | - Upgrade `waf` to version 2.0.6 and other improvements |
Davide Pesavento | 4a43e87 | 2018-05-03 22:10:56 -0400 | [diff] [blame] | 231 | |
susmit | 48cb0b6 | 2018-02-13 12:27:24 -0700 | [diff] [blame] | 232 | ## Version 0.6 |
| 233 | |
| 234 | chunks: |
Davide Pesavento | 5b9431d | 2024-07-14 17:38:04 -0400 | [diff] [blame^] | 235 | |
Davide Pesavento | 4a43e87 | 2018-05-03 22:10:56 -0400 | [diff] [blame] | 236 | - Change the default Interest pipeline to AIMD (Issue #4402) |
| 237 | - Include RTT stats in final summary (Issue #4406) |
| 238 | - Respect `--retries=-1` in the AIMD pipeline (Issue #4409) |
| 239 | - React to congestion marks by default as a timeout event (can be disabled using |
| 240 | `--aimd-ignore-cong-marks`) (Issue #4289) |
| 241 | - Print a final summary of the transfer regardless of the pipeline type, and even if |
| 242 | `--verbose` was not specified (Issue #4421) |
susmit | 48cb0b6 | 2018-02-13 12:27:24 -0700 | [diff] [blame] | 243 | |
Alexander Afanasyev | eacd617 | 2017-10-16 16:40:31 -0400 | [diff] [blame] | 244 | ## Version 0.5 |
| 245 | |
| 246 | all: |
Davide Pesavento | 5b9431d | 2024-07-14 17:38:04 -0400 | [diff] [blame^] | 247 | |
Alexander Afanasyev | eacd617 | 2017-10-16 16:40:31 -0400 | [diff] [blame] | 248 | - Switch to version 2 of certificates, `KeyChain`, and `Validator` (Issue #4089) |
| 249 | - Compilation fixes (Issue #4259) |
| 250 | |
Alexander Afanasyev | eacd617 | 2017-10-16 16:40:31 -0400 | [diff] [blame] | 251 | chunks: |
Davide Pesavento | 5b9431d | 2024-07-14 17:38:04 -0400 | [diff] [blame^] | 252 | |
Davide Pesavento | ebea909 | 2022-02-18 11:30:32 -0500 | [diff] [blame] | 253 | - Make `ndnputchunks` display some output by default; a new `-q` flag makes the tool |
Alexander Afanasyev | eacd617 | 2017-10-16 16:40:31 -0400 | [diff] [blame] | 254 | completely silent, except for errors (Issue #4286) |
| 255 | - Refactor `ndnputchunks` options handling |
| 256 | - Reduce initial timeout of iterative version discovery in `ndncatchunks` (Issue #4291) |
| 257 | - Fix potential `ndncatchunks` crash on exit |
| 258 | |
Davide Pesavento | ebea909 | 2022-02-18 11:30:32 -0500 | [diff] [blame] | 259 | peek: |
Davide Pesavento | 5b9431d | 2024-07-14 17:38:04 -0400 | [diff] [blame^] | 260 | |
Davide Pesavento | ebea909 | 2022-02-18 11:30:32 -0500 | [diff] [blame] | 261 | - Convert use of `Link` into `ForwardingHint` (Issue #4055) |
| 262 | |
Alexander Afanasyev | 339161a | 2016-10-27 22:41:16 +0000 | [diff] [blame] | 263 | ## Version 0.4 |
| 264 | |
Davide Pesavento | 6cc1dfb | 2019-04-27 14:10:56 -0400 | [diff] [blame] | 265 | As of this version, NDN Essential Tools require a modern compiler (gcc >= 4.8.2, clang >= 3.4) |
| 266 | and a relatively new version of the Boost libraries (>= 1.54). This means that the code no |
| 267 | longer compiles with the packaged version of gcc and Boost libraries on Ubuntu 12.04. |
| 268 | NDN Essential Tools can still be compiled on such systems, but require a separate |
| 269 | installation of a newer version of the compiler (e.g., clang-3.4) and dependencies. |
Alexander Afanasyev | 339161a | 2016-10-27 22:41:16 +0000 | [diff] [blame] | 270 | |
| 271 | chunks: |
Davide Pesavento | 5b9431d | 2024-07-14 17:38:04 -0400 | [diff] [blame^] | 272 | |
Davide Pesavento | 6cc1dfb | 2019-04-27 14:10:56 -0400 | [diff] [blame] | 273 | - Change default version discovery to iterative |
Alexander Afanasyev | 339161a | 2016-10-27 22:41:16 +0000 | [diff] [blame] | 274 | - Improve help text of `ndnputchunks` |
| 275 | - Fix `DiscoverVersionIterative` build error |
| 276 | - Modularize Interest pipeline implementation |
| 277 | - Add AIMD congestion control (Issue #3636) |
| 278 | - Code cleanup and improvements |
| 279 | |
| 280 | dissect-wireshark: |
Davide Pesavento | 5b9431d | 2024-07-14 17:38:04 -0400 | [diff] [blame^] | 281 | |
Alexander Afanasyev | 339161a | 2016-10-27 22:41:16 +0000 | [diff] [blame] | 282 | - Add initial support for NDNLPv2 (Issue #3197) |
| 283 | - Fix potential memory overflow |
| 284 | |
| 285 | dump: |
Davide Pesavento | 5b9431d | 2024-07-14 17:38:04 -0400 | [diff] [blame^] | 286 | |
Alexander Afanasyev | 339161a | 2016-10-27 22:41:16 +0000 | [diff] [blame] | 287 | - Add support for Linux cooked-mode capture (SLL) (Issue #3061) |
| 288 | - Improve error messages |
| 289 | |
| 290 | pib: |
Davide Pesavento | 5b9431d | 2024-07-14 17:38:04 -0400 | [diff] [blame^] | 291 | |
Alexander Afanasyev | 339161a | 2016-10-27 22:41:16 +0000 | [diff] [blame] | 292 | - Disable by default (can be compiled with ndn-cxx version 0.5.0) |
| 293 | - Fix compilation error with new version of ndn-cxx library |
| 294 | - Avoid use of deprecated block helpers |
| 295 | - Correct build target path |
| 296 | |
| 297 | ping: |
Davide Pesavento | 5b9431d | 2024-07-14 17:38:04 -0400 | [diff] [blame^] | 298 | |
Alexander Afanasyev | 339161a | 2016-10-27 22:41:16 +0000 | [diff] [blame] | 299 | - Recognize and trace NACK |
Davide Pesavento | 4a43e87 | 2018-05-03 22:10:56 -0400 | [diff] [blame] | 300 | - Fix potential divide-by-zero bug in `StatisticsCollector` (Issue #3504) |
Alexander Afanasyev | 339161a | 2016-10-27 22:41:16 +0000 | [diff] [blame] | 301 | |
| 302 | peek: |
Davide Pesavento | 5b9431d | 2024-07-14 17:38:04 -0400 | [diff] [blame^] | 303 | |
Alexander Afanasyev | 339161a | 2016-10-27 22:41:16 +0000 | [diff] [blame] | 304 | - Recognize and properly handle NACK |
| 305 | - Refactor implementation |
| 306 | |
| 307 | ## Version 0.3 |
| 308 | |
| 309 | chunks: **New** (pair of) tool(s) for segmented file transfer |
| 310 | |
| 311 | peek: |
Davide Pesavento | 5b9431d | 2024-07-14 17:38:04 -0400 | [diff] [blame^] | 312 | |
Alexander Afanasyev | 339161a | 2016-10-27 22:41:16 +0000 | [diff] [blame] | 313 | - Allow verbose output |
| 314 | - Switch from `getopt` to `boost::program_options` |
| 315 | - Add `--link-file` option |
| 316 | |
| 317 | ping: |
Davide Pesavento | 5b9431d | 2024-07-14 17:38:04 -0400 | [diff] [blame^] | 318 | |
Alexander Afanasyev | 339161a | 2016-10-27 22:41:16 +0000 | [diff] [blame] | 319 | - Document ndnping protocol |
| 320 | |
| 321 | dump: |
Davide Pesavento | 5b9431d | 2024-07-14 17:38:04 -0400 | [diff] [blame^] | 322 | |
Alexander Afanasyev | 339161a | 2016-10-27 22:41:16 +0000 | [diff] [blame] | 323 | - Capture and print network NACK packets |
| 324 | - Update docs to include NACK capture feature |
| 325 | |
Davide Pesavento | ebea909 | 2022-02-18 11:30:32 -0500 | [diff] [blame] | 326 | build system: |
Davide Pesavento | 5b9431d | 2024-07-14 17:38:04 -0400 | [diff] [blame^] | 327 | |
Davide Pesavento | 4a43e87 | 2018-05-03 22:10:56 -0400 | [diff] [blame] | 328 | - Enable `-Wextra` by default |
Alexander Afanasyev | 339161a | 2016-10-27 22:41:16 +0000 | [diff] [blame] | 329 | - Fix missing tool name in `configure --help` output |
| 330 | - Fix compatibility with Python 3 |
| 331 | |
| 332 | ## Version 0.2 |
| 333 | |
Davide Pesavento | 6cc1dfb | 2019-04-27 14:10:56 -0400 | [diff] [blame] | 334 | Code improvements and two new tools: |
Alexander Afanasyev | 339161a | 2016-10-27 22:41:16 +0000 | [diff] [blame] | 335 | |
| 336 | - PIB service to manage the public information of keys and publish certificates |
| 337 | (Issue 3018) |
| 338 | - A Wireshark dissector for NDN packets (Issue 3092) |
| 339 | |
| 340 | ## Version 0.1 |
| 341 | |
| 342 | Initial release of NDN Essential Tools, featuring: |
| 343 | |
| 344 | - ndnpeek, ndnpoke: a pair of programs to request and make available for |
Davide Pesavento | 6cc1dfb | 2019-04-27 14:10:56 -0400 | [diff] [blame] | 345 | retrieval a single Data packet. |
| 346 | - ndnping, ndnpingserver: reachability testing tools for Named Data Networking. |
| 347 | - ndndump: a traffic analysis tool that captures NDN packets on the wire. |
Alexander Afanasyev | 339161a | 2016-10-27 22:41:16 +0000 | [diff] [blame] | 348 | - ndn-dissect: an NDN packet format inspector. It reads zero or more NDN |
| 349 | packets from either an input file or the standard input, and displays the |
| 350 | Type-Length-Value (TLV) structure of those packets on the standard output. |