(ctx context.Context, dest string, log *zerolog.Logger)
| 19 | // StreamBasedOriginProxy can be implemented by origin services that want to proxy ws/TCP. |
| 20 | type StreamBasedOriginProxy interface { |
| 21 | EstablishConnection(ctx context.Context, dest string, log *zerolog.Logger) (OriginConnection, error) |
| 22 | } |
| 23 | |
| 24 | // HTTPLocalProxy can be implemented by cloudflared services that want to handle incoming http requests. |
no outgoing calls