]> Cypherpunks.ru repositories - nncp.git/blob - doc/news.texi
nncp-call -mcd-wait
[nncp.git] / doc / news.texi
1 @node News
2 @unnumbered News
3
4 See also this page @ref{Новости, on russian}.
5
6 @node Release 8_4_0
7 @section Release 8.4.0
8 @itemize
9
10 @item
11 Multicast related interface names (@code{mcd-listen} and @code{mcd-send}
12 configuration options) are now regular expressions. By default
13 @command{nncp-cfgnew} uncomments them now with @code{.*} interface name.
14
15 @item
16 @command{nncp-call} command has @option{-mcd-wait} option to wait for
17 multicast packet about node's address.
18
19 @end itemize
20
21 @node Release 8_3_0
22 @section Release 8.3.0
23 @itemize
24
25 @item
26 Fixed building issues on 32-bit systems.
27
28 @end itemize
29
30 @node Release 8_2_0
31 @section Release 8.2.0
32 @itemize
33
34 @item
35 Yggdrasil uses pure-Go IPv6+TCP network stack, instead of naked μTP
36 transport protocol, making it able to work as an ordinary TCP server
37 inside overlay network.
38
39 @item
40 Yggdrasil's @code{prv;bind1,bind2;pub...}-like configuration strings are
41 replaced with URL-like ones (@code{yggdrasils://PRV?bind=BIND1&bind=BIND2&pub=PUB}).
42
43 @item
44 Ability to pass multicast-related parameters to Yggdrasil configuration.
45
46 @item
47 @command{nncp-daemon} is able to listen on both TCP and Yggdrasil-driven
48 sockets simultaneously.
49
50 @item
51 @command{nncp-daemon}'s listening on peering endpoint socket is optional
52 -- you can be reached through the peers.
53
54 @end itemize
55
56 @node Release 8_1_0
57 @section Release 8.1.0
58 @itemize
59
60 @item
61 @command{nncp-cfgdir} does not require @code{self} section existence in
62 configuration file.
63
64 @item
65 Ability to act as Yggdrasil network client, using online protocol on top of it.
66
67 @end itemize
68
69 @node Release 8_0_2
70 @section Release 8.0.2
71 @itemize
72
73 @item
74 Fixed sending ability to areas.
75
76 @end itemize
77
78 @node Release 8_0_1
79 @section Release 8.0.1
80 @itemize
81
82 @item
83 Fixed incorrect @code{freq.chunked} value calculation. If it was missed,
84 then chunked transfer mode was forcefully turned on anyway.
85
86 @item
87 Fixed incorrect full file's size calculation in @file{.nncp.meta}.
88
89 @end itemize
90
91 @node Release 8_0_0
92 @section Release 8.0.0
93 @itemize
94
95 @item
96 @strong{Incompatible} encrypted packet format change: payload and pad
97 sizes are sent in-bound in the encrypted stream. That gives ability to
98 streamingly create encrypted packets, without knowing sizes in advance,
99 without creating temporary file or buffer data in memory.
100
101 @item
102 Proper encrypted packet padding verification is done now. This is not
103 critical issue, but previously neither padding value, nor its size were
104 authenticated, giving ability to iteratively strip trailing bytes and
105 determine payload's size by observing the reaction of the encrypted
106 packet processing.
107
108 @item
109 @command{nncp-exec} loses its @option{-use-tmp} option, because of
110 streaming-compatible encrypted packets format.
111
112 @item
113 @command{nncp-file} and @command{nncp-exec} commands have
114 @option{-maxsize} option, limiting maximal resulting encrypted packet's
115 maximal size (returning error if it is exceeded). Could be useful,
116 because no payload size could be known in advance.
117
118 @end itemize
119
120 @node Release 7_7_0
121 @section Release 7.7.0
122 @itemize
123
124 @item
125 Experimental @code{kqueue} and @code{inotify} based notifications
126 support about spool directory changes, for reducing their often reading
127 overhead.
128
129 @item
130 @file{.seen} and @file{.hdr} files moved to @file{seen/} and @file{hdr/}
131 subdirectories, for faster scanning of spool directories.
132 Current files migration required:
133
134 @example
135 $ find $NNCPSPOOL -type f -name "*.hdr" -exec rm @{@} +
136
137 $ find $NNCPSPOOL -type d -name rx | while read rx ; do
138     cd $rx
139     mkdir -p seen
140     find . -type f -name "*.seen" | while read fn ; do
141         mv $fn seen/$@{fn%.seen@}
142     done
143 done
144
145 $ find $NNCPSPOOL -type d -name area | while read area ; do
146     find $area -type f -name "*.seen" | while read fn ; do
147         mv $fn $@{fn%.seen@}
148     done
149 done
150 @end example
151
152 @end itemize
153
154 @node Release 7_6_0
155 @section Release 7.6.0
156 @itemize
157
158 @item
159 Logging may be done to specified opened file descriptor
160 (@env{$NNCPLOG=FD:5} for example).
161 That is friendly to use under @command{daemontools}.
162
163 @item
164 Added additional checks of public keys existence in configuration file,
165 preventing some commands from failing.
166
167 @end itemize
168
169 @node Release 7_5_1
170 @section Release 7.5.1
171 @itemize
172
173 @item
174 NNCP builds on NetBSD.
175
176 @end itemize
177
178 @node Release 7_5_0
179 @section Release 7.5.0
180 @itemize
181
182 @item
183 @command{nncp-daemon} is compatible with UCSPI-TCP interface, so log
184 will contain remote side's address (when running under appropriate
185 utility). @option{-ucspi} option should be used instead of @option{-inetd}.
186
187 @item
188 @command{nncp-call} can be UCSPI-TCP client, using @option{-ucspi} option.
189
190 @item
191 Do not exit if some of MCD network interfaces can not be listened --
192 only warn about that.
193
194 @end itemize
195
196 @node Release 7_4_0
197 @section Release 7.4.0
198 @itemize
199
200 @item
201 Fixed simultaneous @command{nncp-daemon} and @command{nncp-caller} MCD work.
202
203 @end itemize
204
205 @node Release 7_3_2
206 @section Release 7.3.2
207 @itemize
208
209 @item
210 @command{hjson-cli} utility builds in vendor-mode now.
211
212 @end itemize
213
214 @node Release 7_3_1
215 @section Release 7.3.1
216 @itemize
217
218 @item
219 Fixed possibly left opened file descriptor in online commands.
220
221 @item
222 Severely decreased memory usage of MTH hashing.
223
224 @end itemize
225
226 @node Release 7_3_0
227 @section Release 7.3.0
228 @itemize
229
230 @item
231 Fixed some workability problems on 32-bit systems with big files.
232
233 @item
234 Ability to use directory with a bunch of files as a configuration.
235 @command{nncp-cfgdir} command appeared.
236
237 @end itemize
238
239 @node Release 7_2_1
240 @section Release 7.2.1
241 @itemize
242
243 @item
244 Small optimizations in online commands.
245
246 @end itemize
247
248 @node Release 7_2_0
249 @section Release 7.2.0
250 @itemize
251
252 @item
253 @command{nncp-trns} command appeared for manual transition packets creation.
254
255 @item
256 If destination node of transitional packet has non empty @option{via}
257 route, then do not ignore, but use it.
258
259 @item
260 Do not relay multicast packet to area message's originator, that
261 obviously has seen its own packet.
262
263 @item
264 Much less memory usage during MTH hashing when offset is zero: when
265 packet is not resumed, but for example checked with @command{nncp-check}
266 command.
267
268 @end itemize
269
270 @node Release 7_1_1
271 @section Release 7.1.1
272 @itemize
273
274 @item
275 Fixed failing directories fsync after @file{.seen} file creation.
276
277 @end itemize
278
279 @node Release 7_1_0
280 @section Release 7.1.0
281 @itemize
282
283 @item
284 Multicasting areas feature appeared. Implemented merely by an additional
285 plain packet type with @command{nncp-toss}, @command{nncp-file} and
286 @command{nncp-exec} commands modification.
287
288 @item
289 Fixed workability of @command{nncp-file} and @command{nncp-exec}
290 commands, that use temporary file (stdin and @option{-use-tmp}).
291
292 @item
293 Fixed disappearing bad return code in @command{nncp-exec} command.
294
295 @item
296 Fixed invalid @file{.hdr} generation when transitional packets are used.
297
298 @item
299 @option{-all} option appeared in @command{nncp-rm} command, applying to
300 all the nodes at once.
301
302 @item
303 @option{-cycle} option appeared in @command{nncp-check} command, looping
304 the check in infinite cycle.
305
306 @item
307 @command{nncp-rm} command can take node alias name.
308
309 @item
310 @command{nncp-pkt} can parse @file{.hdr} files.
311
312 @end itemize
313
314 @node Release 7_0_0
315 @section Release 7.0.0
316 @itemize
317
318 @item
319 Minimal required Go version 1.13.
320
321 @item
322 Merkle Tree-based Hashing with BLAKE3 (MTH) is used instead of BLAKE2b.
323 Because of that, there are backward @strong{incompatible} changes of
324 encrypted files (everything laying in the spool directory) and
325 @file{.meta} files of chunked transfer.
326
327 Current implementation is far from being optimal: it lacks
328 parallelizable calculations and has higher memory consumption: nearly
329 512 KiB for each 1 GiB of file's data. Future performance and memory
330 size optimizations should not lead to packet's format change. But it is
331 still several times faster than BLAKE2b.
332
333 @item
334 Resumed online downloads, because of MTH, require reading only of the
335 preceding part of file, not the whole one as was before.
336
337 @item
338 @command{nncp-hash} utility appeared for calculating file's MTH hash.
339
340 @item
341 BLAKE2 KDF and XOF functions are replaced with BLAKE3 in encrypted
342 packets. Lowering number of used primitives. Also, its encrypted
343 packet's header is used as an associated data during encryption.
344
345 @item
346 MultiCast Discovery uses
347 @verb{|ff02::4e4e:4350|} address instead of @verb{|ff02::1|}.
348
349 @item
350 @command{nncp-cfgenc} mistakenly asked passphrase three times during encryption.
351
352 @item
353 @command{nncp-stat} reports about partly downloaded packets.
354
355 @item
356 Updated dependencies.
357
358 @end itemize
359
360 @node Release 6_6_0
361 @section Release 6.6.0
362 @itemize
363
364 @item
365 @command{nncp-daemon}, @command{nncp-call} and @command{nncp-caller}
366 commands wait for all background checksummers completion after
367 connection is finished.
368
369 @item
370 Added possibility of address determining through multicast announcement
371 in local area network, so called MCD (MultiCast Discovery).
372
373 @end itemize
374
375 @node Release 6_5_0
376 @section Release 6.5.0
377 @itemize
378
379 @item
380 Fixed segfault in @command{nncp-daemon} when SP handshake did not succeed.
381
382 @item
383 Fixed possible bad return code ignoring in automatic tosser.
384
385 @item
386 Fixed race during file descriptors closing when online protocol call is
387 finished, that could lead to write error of received packet fragment.
388
389 @item
390 Kill all packet transmission progress bars in @command{nncp-daemon},
391 @command{nncp-call} and @command{nncp-caller} when call is finished.
392
393 @end itemize
394
395 @node Release 6_4_0
396 @section Release 6.4.0
397 @itemize
398
399 @item
400 Fixed possible race in online protocol, that lead to panic.
401
402 @end itemize
403
404 @node Release 6_3_0
405 @section Release 6.3.0
406 @itemize
407
408 @item
409 Fixed possible panic while showing progress during online protocol.
410
411 @end itemize
412
413 @node Release 6_2_1
414 @section Release 6.2.1
415 @itemize
416
417 @item
418 Three places in logs contained excess @code{%s}.
419
420 @end itemize
421
422 @node Release 6_2_0
423 @section Release 6.2.0
424 @itemize
425
426 @item
427 Returned @command{nncp-caller}'s @option{-autotoss*} options workability.
428
429 @item
430 Yet another logging refactoring and simplification.
431 Should be no visible differences to the end user.
432
433 @end itemize
434
435 @node Release 6_1_0
436 @section Release 6.1.0
437 @itemize
438
439 @item
440 Optimization: most commands do not keep opened file descriptors now.
441 Previously you can exceed maximal number of opened files if you have got
442 many packets in the spool directory.
443
444 @item
445 Optimization: do not close file descriptor of the file we download
446 online. Previously each chunk lead to expensive open/close calls.
447
448 @item
449 Online downloaded files are saved with @file{.nock} (non-checksummed)
450 suffix, waiting either for @command{nncp-check}, or online daemons to
451 perform integrity check.
452
453 @item
454 Optimization: files, that are not resumed, are checksummed immediately
455 during the online download, skipping @file{.nock}-intermediate step.
456
457 @item
458 Ability to store encrypted packet's header in @file{.hdr} file, close to
459 the packet itself. That can greatly increase performance of packets
460 listing on filesystems with big block's size.
461
462 @end itemize
463
464 @node Release 6_0_0
465 @section Release 6.0.0
466 @itemize
467
468 @item
469 Log uses human readable and easy machine parseable
470 @url{https://www.gnu.org/software/recutils/, recfile} format for the
471 records, instead of structured RFC 3339 lines. Old logs are not readable
472 by @command{nncp-log} anymore.
473
474 @item
475 @option{-autotoss*} option workability with @command{nncp-daemon}'s
476 @option{-inetd} mode.
477
478 @item
479 Call's @option{when-tx-exists} allows to make a call only when outbound
480 packets exists. Combined with seconds-aware cron expression that can be
481 used as some kind of auto dialler.
482
483 @item
484 @command{nncp-cronexpr} command allows you to check validity and
485 expectations of specified cron expression.
486
487 @end itemize
488
489 @node Release 5_6_0
490 @section Release 5.6.0
491 @itemize
492
493 @item
494 @option{-autotoss*} option runs tosser not after the call, but every
495 second while it is active.
496
497 @item
498 @option{autotoss}, @option{autotoss-doseen},
499 @option{autotoss-nofile}, @option{autotoss-nofreq},
500 @option{autotoss-noexec}, @option{autotoss-notrns} options available in
501 @option{calls} configuration section. You can configure per-call
502 automatic tosser options.
503
504 @item
505 Use vendoring, instead of @env{$GOPATH} overriding during tarball
506 installation, because current minimal Go's version is 1.12 and it
507 supports modules.
508
509 @end itemize
510
511 @node Release 5_5_1
512 @section Release 5.5.1
513 @itemize
514
515 @item
516 Respect for @env{$BINDIR}, @env{$INFODIR} and @env{$DOCDIR} environment
517 variables in @file{config} during installation.
518
519 @end itemize
520
521 @node Release 5_5_0
522 @section Release 5.5.0
523 @itemize
524
525 @item
526 Bugfixes in @command{nncp-call(er)}/@command{nncp-daemon},
527 @command{nncp-bundle} and @command{nncp-stat}.
528
529 @item
530 @command{nncp-rm} has @option{-dryrun} and @option{-older} options now.
531
532 @item
533 @command{nncp-exec} has @option{-use-tmp} and @option{-nocompress}
534 options now. Uncompressed packets are not compatible with previous NNCP
535 versions.
536
537 @item
538 @command{nncp-call}, @command{nncp-caller} and @command{nncp-daemon} commands
539 have @option{-autotoss*} options for running tosser after call is ended.
540
541 @item
542 Updated dependencies. Minimal required Go version is 1.12.
543
544 @end itemize
545
546 @node Release 5_4_1
547 @section Release 5.4.1
548 @itemize
549
550 @item
551 Fixed @code{SENDMAIL} variable usage during the build.
552
553 @end itemize
554
555 @node Release 5_4_0
556 @section Release 5.4.0
557 @itemize
558
559 @item
560 Updated dependencies.
561
562 @item
563 Build system is moved from Makefiles to @url{http://cr.yp.to/redo.html, redo}.
564 This should not influence package maintainers, because minimal @command{redo}
565 implementation is included in tarball.
566
567 @end itemize
568
569 @node Release 5_3_3
570 @section Release 5.3.3
571 @itemize
572
573 @item
574 More various error checks.
575
576 @item
577 Updated dependencies.
578
579 @end itemize
580
581 @node Release 5_3_2
582 @section Release 5.3.2
583 @itemize
584
585 @item
586 Fixed incorrect logic of @option{onlinedeadline} timeout, where
587 connection won't take into account incoming packets events and will
588 forcefully disconnect.
589
590 @end itemize
591
592 @node Release 5_3_1
593 @section Release 5.3.1
594 @itemize
595
596 @item
597 Fixed @option{onlinedeadline} workability with call addresses that use
598 external commands (@verb{#"|somecmd"#}).
599
600 @item
601 @command{nncp-stat} has @option{-pkt} option displaying information
602 about each packet in the spool.
603
604 @end itemize
605
606 @node Release 5_3_0
607 @section Release 5.3.0
608 @itemize
609
610 @item
611 Progress messages contain prefix, describing the running action.
612
613 @item
614 Fixed not occurring handshake messages padding.
615
616 @item
617 Finish all SP protocol related goroutines, less memory leak.
618
619 @item
620 SP protocol generates less socket write calls, thus generating less TCP
621 packets.
622
623 @item
624 Check @option{onlinedeadline} and @option{maxonlinetime} options every
625 second, independently from socket reads (up to 10 seconds).
626
627 @item
628 Once per minute, if no other traffic exists, PING packets are sent in
629 SP-connection. That allows faster determining of connection unworkability.
630
631 @item
632 @command{nncp-toss} uses lock-file to prevent simultaneous tossing.
633
634 @end itemize
635
636 @node Release 5_2_1
637 @section Release 5.2.1
638 @itemize
639
640 @item
641 Fixed SP protocol error handling, sometimes causing program panic.
642
643 @end itemize
644
645 @node Release 5_2_0
646 @section Release 5.2.0
647 @itemize
648
649 @item
650 Most commands by default show oneline operations progress.
651 @option{-progress}, @option{-noprogress} command line options,
652 @option{noprogress} configuration file option appeared.
653
654 @item
655 Fixed incorrect @command{nncp-check} command return code, that returned
656 bad code when everything is good.
657
658 @item
659 Free disk space check during @command{nncp-bundle -rx} call.
660
661 @end itemize
662
663 @node Release 5_1_2
664 @section Release 5.1.2
665 @itemize
666
667 @item
668 @strong{Critical} vulnerability: remote peers authentication could lead
669 to incorrect identification of remote side, allowing foreign encrypted
670 packets downloading.
671
672 @item
673 Bugfix: private and public Noise keys were swapped in newly created
674 configuration files, that lead to inability to authenticate online peers.
675
676 @item
677 Explicit directories fsync-ing for guaranteed files renaming.
678
679 @end itemize
680
681 @node Release 5_1_1
682 @section Release 5.1.1
683 @itemize
684
685 @item
686 Fixed workability of @command{nncp-file} with @option{-chunked 0} option.
687
688 @end itemize
689
690 @node Release 5_1_0
691 @section Release 5.1.0
692 @itemize
693
694 @item
695 @command{nncp-file} can send directories, automatically creating pax
696 archive on the fly.
697
698 @item
699 Free disk space is checked during outbound packets creation.
700
701 @item
702 @option{freq}, @option{freqminsize}, @option{freqchunked} configuration
703 file options replaced with the structure:
704 @option{freq: @{path: @dots{}, minsize: @dots{}, chunked: @dots{}@}}.
705
706 @item
707 Added @option{freq.maxsize} configuration file option, forbidding of
708 freq sending larger than specified size.
709
710 @item
711 Ability to notify about successfully executed commands (exec) with
712 @option{notify.exec} configuration file option.
713
714 @end itemize
715
716 @node Release 5_0_0
717 @section Release 5.0.0
718 @itemize
719
720 @item
721 @strong{Incompatible} configuration file format change: YAML is
722 replaced with Hjson, due to its simplicity, without noticeable lack
723 of either functionality or convenience.
724
725 @item
726 @strong{Incompatible} plain packet format changes. Older versions are
727 not supported. @code{zlib} compression is replaced with
728 @code{Zstandard}, due to its speed and efficiency, despite library
729 version is not mature enough.
730
731 @item
732 Ability to call remote nodes via pipe call of external command, not only
733 through TCP.
734
735 @item
736 @command{nncp-cfgnew} generates configuration file with many
737 comments. @option{-nocomments} option can be used for an old
738 behaviour.
739
740 @item
741 Duplicate filenames have @file{.CTR} suffix, instead of @file{CTR}, to
742 avoid possible collisions with @file{.nncp.chunkCTR}.
743
744 @item
745 Ability to override process umask through configuration file option.
746
747 @item
748 Files and directories are created with 666/777 permissions by default,
749 allowing control with @command{umask}.
750
751 @item
752 Updated dependencies.
753
754 @item
755 Full usage of go modules for dependencies management
756 (@code{go.cypherpunks.ru/nncp/v5} namespace is used).
757
758 @item
759 Forbid any later GNU GPL version autousage
760 (project's licence now is GNU GPLv3-only).
761
762 @end itemize
763
764 @node Release 4_1
765 @section Release 4.1
766 @itemize
767 @item Workability on GNU/Linux systems and Go 1.10 is fixed.
768 @end itemize
769
770 @node Release 4_0
771 @section Release 4.0
772 @itemize
773
774 @item
775 @strong{Incompatible} encrypted and eblob packet format change: AEAD
776 encryption mode with 128 KiB blocks is used now, because previously
777 @command{nncp-toss} did not verify encrypted packet's MAC before feeding
778 decrypted data to external command. Older versions are not supported.
779
780 @item
781 Available free space checking before copying in @command{nncp-xfer},
782 @command{nncp-daemon}, @command{nncp-call(er)}.
783
784 @item
785 @command{nncp-call} has ability only to list packets on remote node,
786 without their transmission.
787
788 @item
789 @command{nncp-call} has ability to transfer only specified packets.
790
791 @item
792 Workability of @option{xxrate} preference in @option{calls}
793 configuration file section.
794
795 @item
796 Dependant libraries are updated.
797
798 @item
799 Minor bugfixes.
800
801 @item
802 Begin using of @code{go.mod} subsystem.
803
804 @end itemize
805
806 @node Release 3_4
807 @section Release 3.4
808 @itemize
809 @item @command{nncp-daemon} can be run as @command{inetd}-service.
810 @end itemize
811
812 @node Release 3_3
813 @section Release 3.3
814 @itemize
815
816 @item
817 @command{nncp-daemon}, @command{nncp-call}, @command{nncp-caller} check
818 if @file{.seen} exists and treat it like file was already downloaded.
819 Possibly it was transferred out-of-bound and remote side needs to be
820 notifier about that.
821
822 @item
823 If higher priority packet is spooled, then @command{nncp-daemon} will
824 queue its sending first, interrupting lower priority transmissions.
825
826 @item
827 Simple packet rate limiter added to online-related tools
828 (@command{nncp-daemon}, @command{nncp-call}, @command{nncp-caller}).
829
830 @item
831 Ability to specify niceness with symbolic notation:
832 @verb{|NORMAL|}, @verb{|BULK+10|}, @verb{|PRIORITY-5|}, etc.
833
834 @item
835 Changed default niceness levels:
836 for @command{nncp-exec} from 64 to 96,
837 for @command{nncp-freq} from 64 to 160,
838 for @command{nncp-file} from 196 to 224.
839
840 @end itemize
841
842 @node Release 3_2
843 @section Release 3.2
844 @itemize
845 @item
846 @strong{Incompatible} @emph{bundle} archive format changes and
847 @command{nncp-bundle} workability with Go 1.10+. Bundles must be
848 valid tar archives, but Go 1.9 made them invalid because of long paths
849 inside. NNCP accidentally was dependant on that bug. Explicit adding of
850 @file{NNCP/} directory in archive restores workability with valid tar
851 archives.
852 @end itemize
853
854 @node Release 3_1
855 @section Release 3.1
856 @itemize
857 @item
858 Ability to disable relaying at all using @verb{|-via -|} command line option.
859 @end itemize
860
861 @node Release 3_0
862 @section Release 3.0
863 @itemize
864
865 @item
866 @strong{Incompatible} plain packet format changes. Older versions are
867 not supported.
868
869 @item
870 Ability to queue remote command execution, by configuring @option{exec}
871 option in configuration file and using @command{nncp-exec} command:
872     @itemize
873     @item
874     @command{nncp-mail} command is replaced with more flexible
875     @command{nncp-exec}. Instead of @verb{|nncp-mail NODE RECIPIENT|}
876     you must use @verb{|nncp-exec NODE sendmail RECIPIENT|}.
877     @item
878     @option{sendmail} configuration file option is replaced with
879     @option{exec}. @verb{|sendmail: [...]|} must be replaced with
880     @verb{|exec: sendmail: [...]|}.
881     @end itemize
882
883 @item
884 Ability to override @option{via} configuration option for destination
885 node via @option{-via} command line option for following commands:
886 @command{nncp-file}, @command{nncp-freq}, @command{nncp-exec}.
887
888 @item
889 Chunked files, having size less than specified chunk size, will be sent
890 as an ordinary single file.
891
892 @item
893 Exec commands are invoked with additional @env{$NNCP_NICE} and
894 @env{$NNCP_SELF} environment variables.
895
896 @item
897 Files, that are sent as a reply to freq, have niceness level taken from
898 the freq packet. You can set desired niceness during @command{nncp-freq}
899 invocation using @option{-replynice} option.
900
901 @item
902 @command{nncp-toss} command can ignore specified packet types during
903 processing: @option{-nofile}, @option{-nofreq}, @option{-noexec},
904 @option{-notrns}.
905
906 @item
907 @command{nncp-file} command uses
908 @option{FreqMinSize}/@option{FreqChunked} configuration file options
909 for @option{-minsize}/@option{-chunked} by default. You can turn this
910 off by specifying zero value.
911
912 @end itemize
913
914 @node Release 2_0
915 @section Release 2.0
916 @itemize
917
918 @item
919 @strong{Incompatible} encrypted/eblob packet format changes. Older
920 versions are not supported.
921
922 @item
923 Twofish encryption algorithm is replaced with ChaCha20. It is much more
924 faster. One cryptographic primitive less.
925
926 @item
927 HKDF-BLAKE2b-256 KDF algorithm is replaced with BLAKE2Xb XOF. Yet
928 another cryptographic primitive less (assuming that BLAKE2X is nearly
929 identical to BLAKE2).
930
931 @end itemize
932
933 @node Release 1_0
934 @section Release 1.0
935 @itemize
936
937 @item
938 @strong{Incompatible} encrypted packet format changes. Older versions
939 are not supported.
940
941 @item
942 @command{nncp-bundle} command can either create stream of encrypted
943 packets, or digest it. It is useful when dealing with
944 @code{stdin}/@code{stdout} based transmission methods (like writing to
945 CD-ROM without intermediate prepared ISO image and working with tape
946 drives).
947
948 @item
949 @command{nncp-toss} is able to create @file{.seen} files preventing
950 duplicate packets receiving.
951
952 @item
953 Single background checksum verifier worker is allowed in
954 @command{nncp-call}. This is helpful when thousands of small inbound
955 packets could create many goroutines.
956
957 @item
958 Ability to override path to spool directory and logfile through either
959 command line argument, or environment variable.
960
961 @item
962 @command{nncp-rm} is able to delete outbound/inbound, @file{.seen},
963 @file{.part}, @file{.lock} and temporary files.
964
965 @end itemize
966
967 @node Release 0_12
968 @section Release 0.12
969 @itemize
970 @item Sendmail command is called with @env{$NNCP_SENDER} environment variable.
971 @end itemize
972
973 @node Release 0_11
974 @section Release 0.11
975 @itemize
976 @item @command{nncp-stat}'s command output is sorted by node name.
977 @end itemize
978
979 @node Release 0_10
980 @section Release 0.10
981 @itemize
982 @item
983 @command{nncp-freq}'s @file{DST} argument is optional now. Last
984 @file{SRC} path's element will be used by default.
985 @end itemize
986
987 @node Release 0_9
988 @section Release 0.9
989 @itemize
990 @item
991 Fix @option{-rx}/@option{-tx} arguments processing in
992 @command{nncp-call} command. They were ignored.
993 @end itemize
994
995 @node Release 0_8
996 @section Release 0.8
997 @itemize
998 @item
999 Little bugfix in @command{nncp-file} command, where @option{-minsize}
1000 option for unchunked transfer was not in KiBs, but in bytes.
1001 @end itemize
1002
1003 @node Release 0_7
1004 @section Release 0.7
1005 @itemize
1006
1007 @item
1008 Ability to feed @command{nncp-file} from @code{stdin}, that uses an
1009 encrypted temporary file for that.
1010
1011 @item
1012 Chunked files transmission appeared with corresponding
1013 @command{nncp-reass} command and @option{freqchunked} configuration file
1014 entry. Useful for transferring big files over small storage devices.
1015
1016 @item
1017 @option{freqminsize} configuration file option, analogue to
1018 @option{-minsize} one.
1019
1020 @item
1021 @command{nncp-xfer}'s @option{-force} option is renamed to
1022 @option{-mkdir} for clarity.
1023
1024 @item
1025 @option{-minsize} option is specified in KiBs, not bytes, for
1026 convenience.
1027
1028 @item
1029 @command{nncp-newcfg} command is renamed to @command{nncp-cfgnew},
1030 and @command{nncp-mincfg} to @command{nncp-cfgmin} -- now they have
1031 common prefix and are grouped together for convenience.
1032
1033 @item
1034 @command{nncp-cfgenc} command appeared, allowing configuration file
1035 encryption/decryption, for keeping it safe without any either OpenPGP or
1036 similar tools usage.
1037
1038 @item
1039 Cryptographic libraries (dependencies) are updated.
1040
1041 @end itemize
1042
1043 @node Release 0_6
1044 @section Release 0.6
1045 @itemize
1046 @item Small @command{nncp-rm} command appeared.
1047 @item Cryptographic libraries (dependencies) are updated.
1048 @end itemize
1049
1050 @node Release 0_5
1051 @section Release 0.5
1052 @itemize
1053 @item
1054 Trivial small fix in default niceness level of @command{nncp-file}
1055 and @command{nncp-freq} commands.
1056 @end itemize
1057
1058 @node Release 0_4
1059 @section Release 0.4
1060 @itemize
1061
1062 @item
1063 Small fix in @command{nncp-call}, @command{nncp-caller},
1064 @command{nncp-daemon}: they can segmentation fail sometimes (no data is
1065 lost).
1066
1067 @item
1068 @command{nncp-newnode} renamed to @command{nncp-newcfg} -- it is shorter
1069 and more convenient to use.
1070
1071 @item
1072 @command{nncp-mincfg} command appeared: helper allowing to create
1073 minimalistic stripped down configuration file without private keys, that
1074 is useful during @command{nncp-xfer} usage.
1075
1076 @end itemize
1077
1078 @node Release 0_3
1079 @section Release 0.3
1080 @itemize
1081 @item Fixed compatibility with Go 1.6.
1082 @end itemize
1083
1084 @node Release 0_2
1085 @section Release 0.2
1086 @itemize
1087
1088 @item
1089 @strong{Incompatible} packet's format change (magic number is changed
1090 too): size field is encrypted and is not send in plaintext anymore.
1091
1092 @item
1093 @option{-minsize} option gives ability to automatically pad outgoing
1094 packets to specified minimal size.
1095
1096 @item
1097 @command{nncp-daemon} and @command{nncp-call}/@command{nncp-caller}
1098 always check new @emph{tx} packets appearance in the background while
1099 connected. Remote side is immediately notified.
1100
1101 @item
1102 @option{-onlinedeadline} option gives ability to configure timeout of
1103 inactivity of online connection, when it could be disconnected. It could
1104 be used to keep connection alive for a long time.
1105
1106 @item
1107 @option{-maxonlinetime} option gives ability to set maximal allowable
1108 online connection aliveness time.
1109
1110 @item
1111 @command{nncp-caller} command appeared: cron-ed TCP daemon caller.
1112
1113 @item
1114 @command{nncp-pkt} command can decompress the data.
1115
1116 @end itemize