代码拉取完成,页面将自动刷新
package nfs
import (
"github.com/elastic/beats/libbeat/beat"
"github.com/elastic/beats/libbeat/common"
)
type nfs struct {
vers uint32
proc uint32
event beat.Event
}
func (nfs *nfs) getRequestInfo(xdr *xdr) common.MapStr {
nfsInfo := common.MapStr{}
nfsInfo["version"] = nfs.vers
switch nfs.vers {
case 3:
nfsInfo["opcode"] = nfs.getV3Opcode(int(nfs.proc))
case 4:
switch nfs.proc {
case 0:
nfsInfo["opcode"] = "NULL"
case 1:
tag := xdr.getDynamicOpaque()
nfsInfo["tag"] = string(tag)
nfsInfo["minor_version"] = xdr.getUInt()
nfsInfo["opcode"] = nfs.findV4MainOpcode(xdr)
}
}
return nfsInfo
}
func (nfs *nfs) getNFSReplyStatus(xdr *xdr) string {
switch nfs.proc {
case 0:
return nfsStatus[0]
default:
stat := int(xdr.getUInt())
return nfsStatus[stat]
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。