Fix silly mistake in hasty port checking fix.
This commit is contained in:
parent
4c27911e8f
commit
44af303de6
1 changed files with 2 additions and 1 deletions
|
@ -15,6 +15,7 @@ import (
|
|||
"path/filepath"
|
||||
"regexp"
|
||||
"sort"
|
||||
"strconv"
|
||||
"strings"
|
||||
"time"
|
||||
)
|
||||
|
@ -60,7 +61,7 @@ func handleGeminiRequest(conn net.Conn, config Config, accessLogEntries chan Log
|
|||
}
|
||||
|
||||
// Reject requests for content from other servers
|
||||
if URL.Hostname() != config.Hostname || (URL.Port() != "" && URL.Port() != config.Port) {
|
||||
if URL.Hostname() != config.Hostname || (URL.Port() != "" && URL.Port() != strconv.Itoa(config.Port)) {
|
||||
conn.Write([]byte("53 No proxying to other hosts or ports!\r\n"))
|
||||
log.Status = 53
|
||||
return
|
||||
|
|
Loading…
Reference in a new issue