api/internal/endpoint/handler/tls/interceptor/protocol_options.go

19 lines
266 B
Go
Raw Normal View History

2021-01-13 17:07:04 +00:00
package interceptor
import (
"fmt"
)
type redirectionTarget struct {
IPAddress string
Port uint16
}
func (rt redirectionTarget) address() string {
return fmt.Sprintf("%s:%d", rt.IPAddress, rt.Port)
}
type tlsOptions struct {
Target redirectionTarget
}