mirror of
https://github.com/zeek/zeek.git
synced 2025-10-07 00:58:19 +00:00
Added rename event to rpc/nfs protocol analyzer.
This event identifies and reports information about nfs/rpc calls and replies of the type rename.
This commit is contained in:
parent
e69bb37cc7
commit
1ee9610b77
5 changed files with 86 additions and 1 deletions
|
@ -30,7 +30,7 @@ enum proc_t %{ # NFSv3 procedures
|
|||
PROC_MKNOD = 11, # not implemented
|
||||
PROC_REMOVE = 12, # done
|
||||
PROC_RMDIR = 13, # done
|
||||
PROC_RENAME = 14, # not implemented
|
||||
PROC_RENAME = 14, # done
|
||||
PROC_LINK = 15, # not implemented
|
||||
PROC_READDIR = 16, # done
|
||||
PROC_READDIRPLUS = 17, # done
|
||||
|
@ -101,6 +101,7 @@ enum createmode_t %{
|
|||
type info_t: record;
|
||||
type fattr_t: record;
|
||||
type diropargs_t: record;
|
||||
type renameopargs_t: record;
|
||||
type lookup_reply_t: record;
|
||||
type readargs_t: record;
|
||||
type read_reply_t: record;
|
||||
|
@ -110,6 +111,7 @@ type wcc_attr_t: record;
|
|||
type write_reply_t: record;
|
||||
type newobj_reply_t: record;
|
||||
type delobj_reply_t: record;
|
||||
type renameobj_reply_t: record;
|
||||
type readdirargs_t: record;
|
||||
type direntry_t: record;
|
||||
type direntry_vec_t: vector;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue