Browse Source

handle close

kingjcy 5 năm trước cách đây
mục cha
commit
62af5c8844
2 tập tin đã thay đổi với 6 bổ sung0 xóa
  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
 }