| 33 | } |
| 34 | |
| 35 | type HTTP2HTTPSPlugin struct { |
| 36 | hostHeaderRewrite string |
| 37 | localAddr string |
| 38 | headers map[string]string |
| 39 | |
| 40 | l *Listener |
| 41 | s *http.Server |
| 42 | } |
| 43 | |
| 44 | func NewHTTP2HTTPSPlugin(params map[string]string) (Plugin, error) { |
| 45 | localAddr := params["plugin_local_addr"] |
nothing calls this directly
no outgoing calls
no test coverage detected