]> Sergey Matveev's repositories - tofuproxy.git/blobdiff - fifos/start.go
Raise copyright years
[tofuproxy.git] / fifos / start.go
index 528b2a9c7ad38548141c53457bca400a8bcb6232..14acead5c1a6a32a883af1e9537375d1ad01497d 100644 (file)
@@ -1,6 +1,7 @@
 /*
-tofuproxy -- flexible HTTP/WARC proxy with TLS certificates management
-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
@@ -57,10 +58,6 @@ 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 addSpy(filepath.Join(fifos, "add-spies"))
        go del(
@@ -78,7 +75,16 @@ func Start(fifos string) {
 
        go addWARC(filepath.Join(fifos, "add-warcs"))
        go del(
-               &warc.WARCsM, func(warcPath string) { delete(warc.WARCs, warcPath) },
+               &warc.WARCsM, func(warcPath string) {
+                       delete(warc.WARCs, warcPath)
+                       delete(warc.WARCsOffsets, warcPath)
+               },
                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"),
+       )
 }