api/internal/endpoint/handler/http/proxy/protocol_options.go

18 lines
263 B
Go

package proxy
import (
"fmt"
)
type redirectionTarget struct {
IPAddress string
Port uint16
}
func (rt redirectionTarget) host() string {
return fmt.Sprintf("%s:%d", rt.IPAddress, rt.Port)
}
type httpProxyOptions struct {
Target redirectionTarget
}