浏览代码

handle close

kingjcy 5 年之前
父节点
当前提交
62af5c8844
共有 2 个文件被更改,包括 6 次插入0 次删除
  1. 3 0
      models/plugin/http2https.go
  2. 3 0
      models/plugin/https2http.go

+ 3 - 0
models/plugin/http2https.go

@@ -105,5 +105,8 @@ func (p *HTTP2HTTPSPlugin) Name() string {
 }
 
 func (p *HTTP2HTTPSPlugin) Close() error {
+	if err := p.s.Close();err != nil {
+		return err
+	}
 	return nil
 }

+ 3 - 0
models/plugin/https2http.go

@@ -126,5 +126,8 @@ func (p *HTTPS2HTTPPlugin) Name() string {
 }
 
 func (p *HTTPS2HTTPPlugin) Close() error {
+	if err := p.s.Close();err != nil {
+		return err
+	}
 	return nil
 }