日志:

1、PXY_HTTP_LOG 属性web_site补全属性;
2、修改NTC_DDOS_LOG 笔误改为IS_BLOCK;
配置:
1、新增VOIP动态阻断(0x112)配置文件;
This commit is contained in:
zhangdongxu
2018-10-15 16:39:40 +08:00
parent 306995c6e3
commit 09341ab920
6 changed files with 29 additions and 16 deletions

View File

@@ -39,6 +39,9 @@ public class PxyHttpLog extends LogEntity<PxyHttpLog> {
protected String reqBody;
@ApiModelProperty(value="原始应答体", required=true)
protected String respBody;
@ApiModelProperty(value="域名", required=true)
protected String webSite;
public String getUrl() {
return url;
}
@@ -117,4 +120,11 @@ public class PxyHttpLog extends LogEntity<PxyHttpLog> {
public void setRespBody(String respBody) {
this.respBody = respBody;
}
public String getWebSite() {
return webSite;
}
public void setWebSite(String webSite) {
this.webSite = webSite;
}
}