]> Cypherpunks.ru repositories - govpn.git/blob - src/cypherpunks.ru/govpn/cmd/govpn-server/proxy.go
GnuPG without the
[govpn.git] / src / cypherpunks.ru / govpn / cmd / govpn-server / proxy.go
1 /*
2 GoVPN -- simple secure free software virtual private network daemon
3 Copyright (C) 2014-2019 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, version 3 of the License.
8
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 GNU General Public License for more details.
13
14 You should have received a copy of the GNU General Public License
15 along with this program.  If not, see <http://www.gnu.org/licenses/>.
16 */
17
18 package main
19
20 import (
21         "net/http"
22
23         "cypherpunks.ru/govpn"
24 )
25
26 type proxyHandler struct{}
27
28 func (p proxyHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
29         conn, _, err := w.(http.Hijacker).Hijack()
30         if err != nil {
31                 govpn.Printf(`[proxy-hijack-failed bind="%s" err="%s"]`, *bindAddr, err)
32                 return
33         }
34         conn.Write([]byte("HTTP/1.0 200 OK\n\n"))
35         go handleTCP(conn)
36 }
37
38 func proxyStart() {
39         govpn.BothPrintf(`[proxy-listen bind="%s" addr="%s"]`, *bindAddr, *proxy)
40         s := &http.Server{
41                 Addr:    *proxy,
42                 Handler: proxyHandler{},
43         }
44         govpn.BothPrintf(`[proxy-finished bind="%s" result="%s"]`, *bindAddr, s.ListenAndServe())
45 }