]> Cypherpunks.ru repositories - nncp.git/blob - src/yggdrasil/yggdrasil_dummy.go
Various Yggdrasil related refactoring and tcpip network stack
[nncp.git] / src / yggdrasil / yggdrasil_dummy.go
1 //go:build noyggdrasil
2 // +build noyggdrasil
3
4 /*
5 NNCP -- Node to Node copy, utilities for store-and-forward data exchange
6 Copyright (C) 2016-2022 Sergey Matveev <stargrave@stargrave.org>
7
8 This program is free software: you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation, version 3 of the License.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program.  If not, see <http://www.gnu.org/licenses/>.
19 */
20
21 package yggdrasil
22
23 import (
24         "errors"
25         "net"
26 )
27
28 var NoYggdrasil = errors.New("no Yggdrasil support is compiled in")
29
30 func NewConn(aliases map[string]string, in string) (ConnDeadlined, error) {
31         return nil, NoYggdrasil
32
33 }
34
35 func NewListener(aliases map[string]string, in string) (net.Listener, error) {
36         return nil, NoYggdrasil
37 }