Files
paralus/components/relay/pkg/proxy/proxy.go
nirav-rafay ac594927a6 initial commit for relay (#17)
initial commit for relay
2022-02-22 11:42:15 +05:30

13 lines
306 B
Go

package proxy
import (
"io"
"net/http"
"github.com/RafaySystems/rcloud-base/components/relay/pkg/utils"
)
// Func is responsible for forwarding a remote connection to local server
// and writing the response.
type Func func(w io.Writer, r io.ReadCloser, msg *utils.ControlMessage, req *http.Request)