]> Sergey Matveev's repositories - tofuproxy.git/blobdiff - httpauth.go
Various refactoring
[tofuproxy.git] / httpauth.go
index 79b51ecc32ca8642a118ee18932964eb2d310d36..5b454cacb64d495d8bc49c1d1924f9ef4d45e250 100644 (file)
@@ -1,5 +1,6 @@
 /*
-tofuproxy -- HTTP proxy with TLS certificates management
+tofuproxy -- flexible HTTP/HTTPS proxy, TLS terminator, X.509 TOFU
+             manager, WARC/geminispace browser
 Copyright (C) 2021 Sergey Matveev <stargrave@stargrave.org>
 
 This program is free software: you can redistribute it and/or modify
@@ -27,6 +28,8 @@ import (
        "os/exec"
        "path/filepath"
        "strings"
+
+       ttls "go.stargrave.org/tofuproxy/tls"
 )
 
 func findInNetrc(host string) (string, string) {
@@ -90,7 +93,7 @@ bind . <KeyPress> {switch -exact %%K {
     l login
 }}
 `, realm, userInit, passInit))
-       cmd := exec.Command(CmdWish)
+       cmd := exec.Command(ttls.CmdWish)
        cmd.Stdin = &b
        out, err := cmd.Output()
        if err != nil {