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