]> Cypherpunks.ru repositories - nncp.git/blob - src/via.go
Unify copyright comment format
[nncp.git] / src / via.go
1 // NNCP -- Node to Node copy, utilities for store-and-forward data exchange
2 // Copyright (C) 2016-2024 Sergey Matveev <stargrave@stargrave.org>
3 //
4 // This program is free software: you can redistribute it and/or modify
5 // it under the terms of the GNU General Public License as published by
6 // the Free Software Foundation, version 3 of the License.
7 //
8 // This program is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11 // GNU General Public License for more details.
12 //
13 // You should have received a copy of the GNU General Public License
14 // along with this program.  If not, see <http://www.gnu.org/licenses/>.
15
16 package nncp
17
18 import (
19         "log"
20         "strings"
21 )
22
23 // Helper function for parsing -via command line option
24 func ViaOverride(argValue string, ctx *Ctx, node *Node) {
25         if argValue == "" {
26                 return
27         }
28         if argValue == "-" {
29                 node.Via = make([]*NodeId, 0)
30                 return
31         }
32         vias := make([]*NodeId, 0, strings.Count(argValue, ",")+1)
33         for _, via := range strings.Split(argValue, ",") {
34                 foundNodeId, err := ctx.FindNode(via)
35                 if err != nil {
36                         log.Fatalln("Invalid Via node specified:", err)
37                 }
38                 vias = append(vias, foundNodeId.Id)
39         }
40         node.Via = vias
41 }