]> Cypherpunks.ru repositories - nncp.git/blobdiff - src/ctx.go
Raise copyright years
[nncp.git] / src / ctx.go
index b1b590b351fa9169805222cdabda34a2276b3a2d..cb1f1f4109ce443aed8ed148f99e5295694cdd34 100644 (file)
@@ -1,6 +1,6 @@
 /*
 NNCP -- Node to Node copy, utilities for store-and-forward data exchange
-Copyright (C) 2016-2021 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,8 @@ type Ctx struct {
 
        MCDRxIfis []string
        MCDTxIfis map[string]int
+
+       YggdrasilAliases map[string]string
 }
 
 func (ctx *Ctx) FindNode(id string) (*Node, error) {
@@ -69,7 +71,8 @@ func (ctx *Ctx) FindNode(id string) (*Node, error) {
        return node, nil
 }
 
-func ensureDir(p string) error {
+func ensureDir(dirs ...string) error {
+       p := filepath.Join(dirs...)
        fi, err := os.Stat(p)
        if err == nil {
                if fi.IsDir() {