Merge pull request #2003 from facchettos/proxy-cleanup

Proxy cleanup
This commit is contained in:
Ben Vesel 2022-04-01 16:21:46 -04:00 коммит произвёл GitHub
Родитель 7399c674cd 73c9f04c30
Коммит d66d29613b
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 12 добавлений и 11 удалений

Просмотреть файл

@ -10,6 +10,7 @@ import (
"io/ioutil" "io/ioutil"
"net" "net"
"net/http" "net/http"
"sync"
"github.com/sirupsen/logrus" "github.com/sirupsen/logrus"
@ -144,27 +145,27 @@ func Proxy(log *logrus.Entry, w http.ResponseWriter, r *http.Request, sz int) {
} }
defer c1.Close() defer c1.Close()
ch := make(chan struct{}) var wg sync.WaitGroup
// Wait for the c1->c2 goroutine to complete before exiting.
//Then the deferred c1.Close() and c2.Close() will be called.
defer wg.Wait()
wg.Add(1)
go func() { go func() {
// use a goroutine to copy from c1->c2. Call c2.CloseWrite() when done. // use a goroutine to copy from c1->c2. Call c2.CloseWrite() when done.
defer recover.Panic(log) defer recover.Panic(log)
defer close(ch) defer wg.Done()
defer func() { defer func() {
_ = c2.(*net.TCPConn).CloseWrite() _ = c2.(*net.TCPConn).CloseWrite()
}() }()
_, _ = io.Copy(c2, buf) _, _ = io.Copy(c2, buf)
}() }()
func() { // copy from c2->c1. Call c1.CloseWrite() when done.
// copy from c2->c1. Call c1.CloseWrite() when done. defer func() {
defer func() { _ = c1.(interface{ CloseWrite() error }).CloseWrite()
_ = c1.(interface{ CloseWrite() error }).CloseWrite()
}()
_, _ = io.Copy(c1, c2)
}() }()
_, _ = io.Copy(c1, c2)
// wait for the c1->c2 goroutine to complete. Then the deferred c1.Close()
// and c2.Close() will be called.
<-ch
} }