]> Cypherpunks.ru repositories - govpn.git/blob - src/cypherpunks.ru/govpn/stats.go
Raise copyright years
[govpn.git] / src / cypherpunks.ru / govpn / stats.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         "encoding/json"
23         "log"
24         "net"
25         "time"
26 )
27
28 const (
29         RWTimeout = 10 * time.Second
30 )
31
32 type KnownPeers map[string]**Peer
33
34 // StatsProcessor is assumed to be run in background. It accepts
35 // connection on statsPort, reads anything one send to them and show
36 // information about known peers in serialized JSON format. peers
37 // argument is a reference to the map with references to the peers as
38 // values. Map is used here because of ease of adding and removing
39 // elements in it.
40 func StatsProcessor(statsPort net.Listener, peers *KnownPeers) {
41         var conn net.Conn
42         var err error
43         var data []byte
44         buf := make([]byte, 2<<8)
45         for {
46                 conn, err = statsPort.Accept()
47                 if err != nil {
48                         log.Println("Error during accepting connection", err.Error())
49                         continue
50                 }
51                 conn.SetDeadline(time.Now().Add(RWTimeout))
52                 conn.Read(buf)
53                 conn.Write([]byte("HTTP/1.0 200 OK\r\nContent-Type: application/json\r\n\r\n"))
54                 var peersList []*Peer
55                 for _, peer := range *peers {
56                         peersList = append(peersList, *peer)
57                 }
58                 data, err = json.Marshal(peersList)
59                 if err != nil {
60                         panic(err)
61                 }
62                 conn.Write(data)
63                 conn.Close()
64         }
65 }