]> Cypherpunks.ru repositories - govpn.git/blob - src/cypherpunks.ru/govpn/cmd/govpn-client/proxy.go
Merge branch 'develop'
[govpn.git] / src / cypherpunks.ru / govpn / cmd / govpn-client / proxy.go
1 /*
2 GoVPN -- simple secure free software virtual private network daemon
3 Copyright (C) 2014-2016 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         "bufio"
23         "encoding/base64"
24         "log"
25         "net"
26         "net/http"
27 )
28
29 func proxyTCP(timeouted, rehandshaking, termination chan struct{}) {
30         proxyAddr, err := net.ResolveTCPAddr("tcp", *proxyAddr)
31         if err != nil {
32                 log.Fatalln("Can not resolve proxy address:", err)
33         }
34         conn, err := net.DialTCP("tcp", nil, proxyAddr)
35         if err != nil {
36                 log.Fatalln("Can not connect to proxy:", err)
37         }
38         req := "CONNECT " + *remoteAddr + " HTTP/1.1\n"
39         req += "Host: " + *remoteAddr + "\n"
40         if *proxyAuth != "" {
41                 req += "Proxy-Authorization: Basic "
42                 req += base64.StdEncoding.EncodeToString([]byte(*proxyAuth)) + "\n"
43         }
44         req += "\n"
45         conn.Write([]byte(req))
46         resp, err := http.ReadResponse(
47                 bufio.NewReader(conn),
48                 &http.Request{Method: "CONNECT"},
49         )
50         if err != nil || resp.StatusCode != http.StatusOK {
51                 log.Fatalln("Unexpected response from proxy")
52         }
53         log.Println("Connected to proxy:", *proxyAddr)
54         go handleTCP(conn, timeouted, rehandshaking, termination)
55 }