]> Cypherpunks.ru repositories - govpn.git/blob - src/govpn/cmd/govpn-client/udp.go
57a457f1a38c23d4da122feba23cd520b9336e41
[govpn.git] / src / govpn / cmd / govpn-client / udp.go
1 /*
2 GoVPN -- simple secure free software virtual private network daemon
3 Copyright (C) 2014-2015 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 main
20
21 import (
22         "log"
23         "net"
24         "time"
25
26         "govpn"
27 )
28
29 type UDPSender struct {
30         conn *net.UDPConn
31 }
32
33 func (c UDPSender) Write(data []byte) (int, error) {
34         return c.conn.Write(data)
35 }
36
37 func (c UDPSender) Reorderable() bool {
38         return true
39 }
40
41 func startUDP() (govpn.RemoteConn, chan []byte, chan struct{}) {
42         remote, err := net.ResolveUDPAddr("udp", *remoteAddr)
43         if err != nil {
44                 log.Fatalln("Can not resolve remote address:", err)
45         }
46         c, err := net.DialUDP("udp", nil, remote)
47         if err != nil {
48                 log.Fatalln("Can not listen on UDP:", err)
49         }
50         sink := make(chan []byte)
51         ready := make(chan struct{})
52         go func() {
53                 buf := make([]byte, govpn.MTU)
54                 var n int
55                 var err error
56                 for {
57                         <-ready
58                         c.SetReadDeadline(time.Now().Add(time.Second))
59                         n, err = c.Read(buf)
60                         if err != nil {
61                                 sink <- nil
62                                 continue
63                         }
64                         sink <- buf[:n]
65                 }
66         }()
67         ready <- struct{}{}
68         return UDPSender{c}, sink, ready
69 }