]> Cypherpunks.ru repositories - govpn.git/blob - src/cypherpunks.ru/govpn/cmd/govpn-server/proxy.go
Initial syslog support
[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-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         "log"
23         "net/http"
24
25         "cypherpunks.ru/govpn"
26 )
27
28 type proxyHandler struct{}
29
30 func (p proxyHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
31         conn, _, err := w.(http.Hijacker).Hijack()
32         if err != nil {
33                 govpn.Println("Hijacking failed:", err.Error())
34                 return
35         }
36         conn.Write([]byte("HTTP/1.0 200 OK\n\n"))
37         go handleTCP(conn)
38 }
39
40 func proxyStart() {
41         log.Println("HTTP proxy listening on:" + *proxy)
42         govpn.Println("HTTP proxy listening on:" + *proxy)
43         s := &http.Server{
44                 Addr:    *proxy,
45                 Handler: proxyHandler{},
46         }
47         log.Println("HTTP proxy result:", s.ListenAndServe())
48         govpn.Println("HTTP proxy result:", s.ListenAndServe())
49 }