]> Sergey Matveev's repositories - tofuproxy.git/blobdiff - fifos/start.go
More Fprintf usage
[tofuproxy.git] / fifos / start.go
index 570f4bc18828033f3ace41f9bc3a6d212f7f6622..2dad65a00d04a8a80c5e8b70190cf20935682652 100644 (file)
@@ -1,7 +1,7 @@
 /*
-tofuproxy -- flexible HTTP proxy, TLS terminator, X.509 certificates
-             manager, WARC/Gemini browser
-Copyright (C) 2021 Sergey Matveev <stargrave@stargrave.org>
+tofuproxy -- flexible HTTP/HTTPS proxy, TLS terminator, X.509 TOFU
+             manager, WARC/geminispace browser
+Copyright (C) 2021-2023 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
@@ -42,6 +42,7 @@ func Start(fifos string) {
        go listAccepted(filepath.Join(fifos, "list-accepted"))
        go listHTTPAuth(filepath.Join(fifos, "list-http-auth"))
        go listRejected(filepath.Join(fifos, "list-rejected"))
+       go listRestricted(filepath.Join(fifos, "list-restricted"))
        go listSpies(filepath.Join(fifos, "list-spies"))
        go listTLSAuth(filepath.Join(fifos, "list-tls-auth"))
        go listWARCs(filepath.Join(fifos, "list-warcs"))
@@ -58,10 +59,8 @@ func Start(fifos string) {
                &caches.RejectedM, func(host string) { delete(caches.Rejected, host) },
                filepath.Join(fifos, "del-rejected"),
        )
-       go del(
-               &caches.TLSAuthCacheM, func(host string) { delete(caches.TLSAuthCache, host) },
-               filepath.Join(fifos, "del-tls-auth"),
-       )
+
+       go addRestricted(filepath.Join(fifos, "add-restricted"))
 
        go addSpy(filepath.Join(fifos, "add-spies"))
        go del(
@@ -85,4 +84,10 @@ func Start(fifos string) {
                },
                filepath.Join(fifos, "del-warcs"),
        )
+
+       go addTLSAuth(filepath.Join(fifos, "add-tls-auth"))
+       go del(
+               &caches.TLSAuthCacheM, func(host string) { delete(caches.TLSAuthCache, host) },
+               filepath.Join(fifos, "del-tls-auth"),
+       )
 }