]> Sergey Matveev's repositories - tofuproxy.git/blobdiff - fifos/start.go
More Fprintf usage
[tofuproxy.git] / fifos / start.go
index 87fb617bbbb03b7351e341c77133d3f96b3f05f6..2dad65a00d04a8a80c5e8b70190cf20935682652 100644 (file)
@@ -1,7 +1,7 @@
 /*
 tofuproxy -- flexible HTTP/HTTPS proxy, TLS terminator, X.509 TOFU
              manager, WARC/geminispace browser
-Copyright (C) 2021 Sergey Matveev <stargrave@stargrave.org>
+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"))
@@ -59,6 +60,8 @@ func Start(fifos string) {
                filepath.Join(fifos, "del-rejected"),
        )
 
+       go addRestricted(filepath.Join(fifos, "add-restricted"))
+
        go addSpy(filepath.Join(fifos, "add-spies"))
        go del(
                &caches.SpiesM, func(host string) {