2020-12-30 18:44:46 +00:00
|
|
|
package httpproxy
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"sync"
|
|
|
|
|
|
2021-02-06 11:05:50 -05:00
|
|
|
"github.com/qdm12/gluetun/internal/configuration"
|
2020-12-30 18:44:46 +00:00
|
|
|
"github.com/qdm12/gluetun/internal/models"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
type state struct {
|
|
|
|
|
status models.LoopStatus
|
2021-02-06 11:05:50 -05:00
|
|
|
settings configuration.HTTPProxy
|
2020-12-30 18:44:46 +00:00
|
|
|
statusMu sync.RWMutex
|
|
|
|
|
settingsMu sync.RWMutex
|
|
|
|
|
}
|