]> Cypherpunks.ru repositories - govpn.git/blob - src/govpn/cmd/govpn-client/udp.go
Ability to use TCP as a base transport
[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         "io"
23         "log"
24         "net"
25         "time"
26
27         "govpn"
28 )
29
30 func startUDP() (io.Writer, chan []byte, chan struct{}) {
31         remote, err := net.ResolveUDPAddr("udp", *remoteAddr)
32         if err != nil {
33                 log.Fatalln("Can not resolve remote address:", err)
34         }
35         c, err := net.DialUDP("udp", nil, remote)
36         conn := io.Writer(c)
37         if err != nil {
38                 log.Fatalln("Can not listen on UDP:", err)
39         }
40         sink := make(chan []byte)
41         ready := make(chan struct{})
42         go func() {
43                 buf := make([]byte, govpn.MTU)
44                 var n int
45                 var err error
46                 for {
47                         <-ready
48                         c.SetReadDeadline(time.Now().Add(time.Second))
49                         n, err = c.Read(buf)
50                         if err != nil {
51                                 sink <- nil
52                                 continue
53                         }
54                         sink <- buf[:n]
55                 }
56         }()
57         ready <- struct{}{}
58         return conn, sink, ready
59 }