]> Cypherpunks.ru repositories - govpn.git/blob - src/cypherpunks.ru/govpn/conf.go
golint fixes
[govpn.git] / src / cypherpunks.ru / govpn / conf.go
1 /*
2 GoVPN -- simple secure free software virtual private network daemon
3 Copyright (C) 2014-2017 Sergey Matveev <stargrave@stargrave.org>
4
5 This program is free software: you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation, either version 3 of the License, or
8 (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program.  If not, see <http://www.gnu.org/licenses/>.
17 */
18
19 package govpn
20
21 import (
22         "time"
23
24         "github.com/agl/ed25519"
25 )
26
27 // PeerConf is configuration of a single GoVPN Peer (client)
28 type PeerConf struct {
29         ID          *PeerID       `yaml:"-"`
30         Name        string        `yaml:"name"`
31         Iface       string        `yaml:"iface"`
32         MTU         int           `yaml:"mtu"`
33         Up          string        `yaml:"up"`
34         Down        string        `yaml:"down"`
35         TimeoutInt  int           `yaml:"timeout"`
36         Timeout     time.Duration `yaml:"-"`
37         Noise       bool          `yaml:"noise"`
38         CPR         int           `yaml:"cpr"`
39         Encless     bool          `yaml:"encless"`
40         TimeSync    int           `yaml:"timesync"`
41         VerifierRaw string        `yaml:"verifier"`
42
43         // This is passphrase verifier
44         Verifier *Verifier `yaml:"-"`
45         // This field exists only on client's side
46         DSAPriv *[ed25519.PrivateKeySize]byte `yaml:"-"`
47 }