From 161dfd493a8c12cb5a20c1cb9eee8c9c9abed128 Mon Sep 17 00:00:00 2001 From: atavism Date: Mon, 23 Sep 2024 08:17:28 -0700 Subject: [PATCH] Add comment --- ipproxy.go | 1 + 1 file changed, 1 insertion(+) diff --git a/ipproxy.go b/ipproxy.go index 253c9de..84eafd7 100644 --- a/ipproxy.go +++ b/ipproxy.go @@ -250,6 +250,7 @@ func (p *proxy) setStack(s *stack.Stack) { p.mu.Unlock() } +// Stop shuts down the proxy in an orderly fashion and blocks until shutdown is complete. func (p *proxy) Stop() error { p.mu.Lock() defer p.mu.Unlock()