X-Git-Url: http://www.git.cypherpunks.ru/?a=blobdiff_plain;f=src%2Fcmd%2Fnncp-trns%2Fmain.go;h=c587b802a9fa72e616f080a064f357ef347de232;hb=7c507e7ddba9fe5557df06c860fe9fa6197ba2e1;hp=6c6e3d47cb9b942186a9a40e369605694c812367;hpb=3ccbb7d242629d0873ba75313461f7d447d5e0e8;p=nncp.git diff --git a/src/cmd/nncp-trns/main.go b/src/cmd/nncp-trns/main.go index 6c6e3d4..c587b80 100644 --- a/src/cmd/nncp-trns/main.go +++ b/src/cmd/nncp-trns/main.go @@ -1,6 +1,6 @@ /* NNCP -- Node to Node copy, utilities for store-and-forward data exchange -Copyright (C) 2016-2021 Sergey Matveev +Copyright (C) 2016-2023 Sergey Matveev 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 @@ -27,12 +27,11 @@ import ( "path/filepath" "strings" - "go.cypherpunks.ru/nncp/v7" + "go.cypherpunks.ru/nncp/v8" ) 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", @@ -137,7 +136,15 @@ func main() { if err != nil { panic(err) } - if _, err = ctx.Tx(node, pktTrns, nice, fi.Size(), 0, fd, pktName, nil); err != nil { + if _, _, _, err = ctx.Tx( + node, + pktTrns, + nice, + fi.Size(), 0, nncp.MaxFileSize, + fd, + pktName, + nil, + ); err != nil { log.Fatalln(err) } }