]> Cypherpunks.ru repositories - nncp.git/blobdiff - src/call.go
Generate ACKs during tossing
[nncp.git] / src / call.go
index 295e7c8805c62eaee4cf0d3fd5051e4e86fb2251..5bb5d0e08209ffdf1e82d03852ed41589522bc7e 100644 (file)
@@ -1,6 +1,6 @@
 /*
 NNCP -- Node to Node copy, utilities for store-and-forward data exchange
-Copyright (C) 2016-2022 Sergey Matveev <stargrave@stargrave.org>
+Copyright (C) 2016-2023 Sergey Matveev <stargrave@stargrave.org>
 
 This program is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
@@ -51,6 +51,7 @@ type Call struct {
        AutoTossNoTrns bool
        AutoTossNoArea bool
        AutoTossNoACK  bool
+       AutoTossGenACK bool
 }
 
 func (ctx *Ctx) CallNode(
@@ -117,7 +118,7 @@ func (ctx *Ctx) CallNode(
                        ctx.LogI("call-started", les, func(les LEs) string {
                                return fmt.Sprintf("Connection to %s (%s)", node.Name, addr)
                        })
-                       state.Wait()
+                       isGood = state.Wait()
                        ctx.LogI("call-finished", append(
                                les,
                                LE{"Duration", int64(state.Duration.Seconds())},
@@ -138,7 +139,6 @@ func (ctx *Ctx) CallNode(
                                        humanize.IBytes(uint64(state.TxSpeed)),
                                )
                        })
-                       isGood = true
                        conn.Close()
                        break
                } else {