public inbox for nncp-devel@lists.cypherpunks.ru
Atom feed
* [EN] NNCP 8.7.0 release announcement
@ 2022-03-04 13:57 Sergey Matveev
2022-03-05 1:47 ` John Goerzen
2022-03-06 0:59 ` Jonathan Lane
0 siblings, 2 replies; 4+ messages in thread
From: Sergey Matveev @ 2022-03-04 13:57 UTC (permalink / raw)
To: nncp-devel
[-- Attachment #1.1: Type: text/plain, Size: 2318 bytes --]
I am pleased to announce NNCP 8.7.0 release availability!
NNCP (Node to Node copy) is a collection of utilities simplifying
secure store-and-forward files and mail exchanging.
This utilities are intended to help build up small size (dozens of
nodes) ad-hoc friend-to-friend (F2F) statically routed darknet
delay-tolerant networks for fire-and-forget secure reliable files, file
requests, Internet mail and commands transmission. All packets are
integrity checked, end-to-end encrypted (E2EE), explicitly authenticated
by known participants public keys. Onion encryption is applied to
relayed packets. Each node acts both as a client and server, can use
push and poll behaviour model. Also there is multicasting areas support.
Out-of-box offline sneakernet/floppynet, dead drops, sequential and
append-only CD-ROM/tape storages, air-gapped computers support. But
online TCP daemon with full-duplex resumable data transmission exists.
------------------------ >8 ------------------------
The main improvements for that release are:
* "nncp-ack" does not acknowledge ACK-packets, preventing an endless
loop of ACKs.
* "nncp-ack" previously did not remove corresponding "hdr/" files.
* "nncp-rm" now takes list of packet from "stdin" when "-pkt" option
is used.
* "nncp-ack" now generates list of ACK packets it created, that could
be used as an input to "nncp-rm" to remove outbound ACK packets.
------------------------ >8 ------------------------
NNCP's home page is: http://www.nncpgo.org/
Source code and its signature for that version can be found here:
http://www.nncpgo.org/download/nncp-8.7.0.tar.xz (1670 KiB)
http://www.nncpgo.org/download/nncp-8.7.0.tar.xz.sig
SHA256 hash: ED488FFD 7D88028B DD64386B EC4AD911 6F7DA088 1FB1E628 493D2F2B BBD1E868
GPG key ID: 0x2B25868E75A1A953 NNCP releases <releases@nncpgo•org>
Fingerprint: 92C2 F0AE FE73 208E 46BF F3DE 2B25 868E 75A1 A953
There are mirrors where you can also get the source code tarballs:
http://www.nncpgo.org/Mirrors.html
Please send questions regarding the use of NNCP, bug reports and patches
to mailing list: http://lists.cypherpunks.ru/nncp_002ddevel.html
--
Sergey Matveev (http://www.stargrave.org/)
OpenPGP: CF60 E89A 5923 1E76 E263 6422 AE1A 8109 E498 57EF
[-- Attachment #1.2: nncp-8.7.0.tar.xz.meta4 --]
[-- Type: application/metalink4+xml, Size: 1337 bytes --]
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [EN] NNCP 8.7.0 release announcement
2022-03-04 13:57 [EN] NNCP 8.7.0 release announcement Sergey Matveev
@ 2022-03-05 1:47 ` John Goerzen
2022-03-06 0:59 ` Jonathan Lane
1 sibling, 0 replies; 4+ messages in thread
From: John Goerzen @ 2022-03-05 1:47 UTC (permalink / raw)
To: Sergey Matveev; +Cc: nncp-devel
On Fri, Mar 04 2022, Sergey Matveev wrote:
> I am pleased to announce NNCP 8.7.0 release availability!
Thanks, Sergey! This is working perfectly!
- John
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [EN] NNCP 8.7.0 release announcement
2022-03-04 13:57 [EN] NNCP 8.7.0 release announcement Sergey Matveev
2022-03-05 1:47 ` John Goerzen
@ 2022-03-06 0:59 ` Jonathan Lane
2022-03-07 13:48 ` PATH respecting Sergey Matveev
1 sibling, 1 reply; 4+ messages in thread
From: Jonathan Lane @ 2022-03-06 0:59 UTC (permalink / raw)
To: nncp-devel
Thanks for the new release! I found a small problem with the build
scripts not honoring PATH. I'm running Slackware 15, so /usr/bin/go is
gccgo, with Google Go (required to build for some reason) being in
/usr/lib64/go1.17.7/go/bin/go. Setting an environment variable fixed
it, so it might be worth adding to the build script itself.
$ redo all <== fails with gccgo
$ GO=$(which go) redo all <== succeeds with Google go
--
tidux@sdf•org
SDF Public Access UNIX System - http://sdf.org
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: PATH respecting
2022-03-06 0:59 ` Jonathan Lane
@ 2022-03-07 13:48 ` Sergey Matveev
0 siblings, 0 replies; 4+ messages in thread
From: Sergey Matveev @ 2022-03-07 13:48 UTC (permalink / raw)
To: nncp-devel
[-- Attachment #1: Type: text/plain, Size: 569 bytes --]
Greetings!
*** Jonathan Lane [2022-03-06 00:59]:
>$ redo all <== fails with gccgo
>$ GO=$(which go) redo all <== succeeds with Google go
I can not reproduce that issue.
I tried goredo and contrib/do as a redo implementation:
$ cat > foo.do <<EOF
echo "$PATH"
which go
EOF
$ redo foo
$ cat foo
PATH is here, go's placement is expected
It should be respected anyway, if redo implementation does not clean it.
--
Sergey Matveev (http://www.stargrave.org/)
OpenPGP: CF60 E89A 5923 1E76 E263 6422 AE1A 8109 E498 57EF
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2022-03-07 13:49 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-03-04 13:57 [EN] NNCP 8.7.0 release announcement Sergey Matveev
2022-03-05 1:47 ` John Goerzen
2022-03-06 0:59 ` Jonathan Lane
2022-03-07 13:48 ` PATH respecting Sergey Matveev