]> Cypherpunks.ru repositories - nncp.git/blobdiff - src/cmd/nncp-trns/main.go
Wrap long lines
[nncp.git] / src / cmd / nncp-trns / main.go
index 27d9d6b9f6c58a610609ed0fd5b8396d90e89575..ad023e92b0b551d428f5ea5142faffe5515504e1 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
@@ -31,8 +31,7 @@ import (
 )
 
 func usage() {
-       fmt.Fprintf(os.Stderr, nncp.UsageHeader())
-       fmt.Fprintf(os.Stderr, "nncp-trns -- transit existing encrypted packet\n\n")
+       fmt.Fprint(os.Stderr, "nncp-trns -- transit existing encrypted packet\n\n")
        fmt.Fprintf(os.Stderr, "Usage: %s [options] -via NODEx[,...] NODE:PKT\n", os.Args[0])
        fmt.Fprintf(os.Stderr, "       (to transit SPOOL/NODE/tx/PKT)\n")
        fmt.Fprintf(os.Stderr, "       %s [options] -via NODEx[,...] /path/to/PKT\nOptions:\n",
@@ -42,8 +41,9 @@ func usage() {
 
 func main() {
        var (
-               cfgPath     = flag.String("cfg", nncp.DefaultCfgPath, "Path to configuration file")
-               niceRaw     = flag.String("nice", nncp.NicenessFmt(nncp.DefaultNiceFile), "Outbound packet niceness")
+               cfgPath = flag.String("cfg", nncp.DefaultCfgPath, "Path to configuration file")
+               niceRaw = flag.String("nice", nncp.NicenessFmt(nncp.DefaultNiceFile),
+                       "Outbound packet niceness")
                viaOverride = flag.String("via", "", "Override Via path to destination node")
                spoolPath   = flag.String("spool", "", "Override path to spool")
                logPath     = flag.String("log", "", "Override path to logfile")
@@ -137,7 +137,7 @@ func main() {
        if err != nil {
                panic(err)
        }
-       if _, _, err = ctx.Tx(
+       if _, _, _, err = ctx.Tx(
                node,
                pktTrns,
                nice,