]> Cypherpunks.ru repositories - govpn.git/blobdiff - src/cypherpunks.ru/govpn/client/proxy.go
Forbid any later GNU GPL versions autousage
[govpn.git] / src / cypherpunks.ru / govpn / client / proxy.go
index 9f8e684868b073c02af62ad63fa1b4608a731728..19ec610cf366f28a902dea9a7bf1229a27e05ef9 100644 (file)
@@ -1,11 +1,10 @@
 /*
 GoVPN -- simple secure free software virtual private network daemon
-Copyright (C) 2014-2016 Sergey Matveev <stargrave@stargrave.org>
+Copyright (C) 2014-2019 Sergey Matveev <stargrave@stargrave.org>
 
 This program is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
-the Free Software Foundation, either version 3 of the License, or
-(at your option) any later version.
+the Free Software Foundation, version 3 of the License.
 
 This program is distributed in the hope that it will be useful,
 but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -21,8 +20,8 @@ package client
 import (
        "bufio"
        "encoding/base64"
-       "net"
        "fmt"
+       "net"
        "net/http"
 
        "cypherpunks.ru/govpn"
@@ -55,6 +54,6 @@ func (c *Client) proxyTCP() {
                c.Error <- fmt.Errorf("Unexpected response from proxy: %s", err.Error())
                return
        }
-       govpn.Printf(`[proxy-connected remote="%s" addr="%s"]`, c.config.RemoteAddress, *proxyAddr)
+       govpn.Printf(`[proxy-connected remote="%s" addr="%s"]`, c.config.RemoteAddress, (*proxyAddr).String())
        go c.handleTCP(conn)
 }