From: Sergey Matveev Date: Wed, 10 Nov 2021 09:35:28 +0000 (+0300) Subject: Fixed sending to areas X-Git-Tag: v8.0.2^2~2 X-Git-Url: http://www.git.cypherpunks.ru/?p=nncp.git;a=commitdiff_plain;h=823e905cef9ef709c264ce7c07945a2f6c8a1c8c Fixed sending to areas --- diff --git a/doc/news.ru.texi b/doc/news.ru.texi index e3cd38c..5bf929b 100644 --- a/doc/news.ru.texi +++ b/doc/news.ru.texi @@ -1,6 +1,15 @@ @node Новости @section Новости +@node Релиз 8.0.2 +@subsection Релиз 8.0.2 +@itemize + +@item +Исправлена возможность отправки мультивещательных пакетов. + +@end itemize + @node Релиз 8.0.1 @subsection Релиз 8.0.1 @itemize diff --git a/doc/news.texi b/doc/news.texi index f0e71f9..2b04c63 100644 --- a/doc/news.texi +++ b/doc/news.texi @@ -3,6 +3,15 @@ See also this page @ref{Новости, on russian}. +@node Release 8_0_2 +@section Release 8.0.2 +@itemize + +@item +Fixed sending ability to areas. + +@end itemize + @node Release 8_0_1 @section Release 8.0.1 @itemize diff --git a/src/nncp.go b/src/nncp.go index b56be29..d6a6d85 100644 --- a/src/nncp.go +++ b/src/nncp.go @@ -40,7 +40,7 @@ along with this program. If not, see .` const Base32Encoded32Len = 52 var ( - Version string = "8.0.1" + Version string = "8.0.2" Base32Codec *base32.Encoding = base32.StdEncoding.WithPadding(base32.NoPadding) ) diff --git a/src/tx.go b/src/tx.go index b8d47aa..fd4e0fb 100644 --- a/src/tx.go +++ b/src/tx.go @@ -205,6 +205,7 @@ func (ctx *Ctx) Tx( r := <-results payloadSize = r.size pktEncMsg = r.pktEncRaw + wrappers-- } for i := 0; i <= wrappers; i++ { r := <-results