mirror of
https://github.com/TeaOSLab/EdgeNode.git
synced 2025-11-07 10:40:26 +08:00
35 lines
649 B
Go
35 lines
649 B
Go
// Copyright 2021 Liuxiangchao iwind.liu@gmail.com. All rights reserved.
|
|
|
|
package waf
|
|
|
|
import (
|
|
"net/http"
|
|
)
|
|
|
|
type BaseAction struct {
|
|
currentActionId int64
|
|
}
|
|
|
|
// ActionId 读取ActionId
|
|
func (this *BaseAction) ActionId() int64 {
|
|
return this.currentActionId
|
|
}
|
|
|
|
// SetActionId 设置Id
|
|
func (this *BaseAction) SetActionId(actionId int64) {
|
|
this.currentActionId = actionId
|
|
}
|
|
|
|
// CloseConn 关闭连接
|
|
func (this *BaseAction) CloseConn(writer http.ResponseWriter) error {
|
|
// 断开连接
|
|
hijack, ok := writer.(http.Hijacker)
|
|
if ok {
|
|
conn, _, err := hijack.Hijack()
|
|
if err == nil && conn != nil {
|
|
return conn.Close()
|
|
}
|
|
}
|
|
return nil
|
|
}
|