]> Cypherpunks.ru repositories - govpn.git/blob - src/cypherpunks.ru/govpn/cmd/govpn-server/proxy.go
Merge branch 'develop'
[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
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                 log.Println("Hijacking failed:", err.Error())
32                 return
33         }
34         conn.Write([]byte("HTTP/1.0 200 OK\n\n"))
35         go handleTCP(conn)
36 }
37
38 func proxyStart() {
39         log.Println("HTTP proxy listening on:" + *proxy)
40         s := &http.Server{
41                 Addr:    *proxy,
42                 Handler: proxyHandler{},
43         }
44         log.Println("HTTP proxy result:", s.ListenAndServe())
45 }