|
Radek Vokál |
0fc81e |
--- ethereal-0.10.14/epan/dissectors/packet-nfs.c.orig 2005-12-26 21:21:11.000000000 -0500
|
|
Radek Vokál |
0fc81e |
+++ ethereal-0.10.14/epan/dissectors/packet-nfs.c 2006-01-02 13:57:05.000000000 -0500
|
|
Radek Vokál |
0fc81e |
@@ -7040,6 +7040,8 @@ dissect_nfs_argop4(tvbuff_t *tvb, int of
|
|
Radek Vokál |
0fc81e |
|
|
Radek Vokál |
0fc81e |
if (ftree == NULL) return offset;
|
|
Radek Vokál |
0fc81e |
|
|
Radek Vokál |
0fc81e |
+ proto_item_append_text(tree, ", Ops(%d):", ops);
|
|
Radek Vokál |
0fc81e |
+
|
|
Radek Vokál |
0fc81e |
for (ops_counter=0; ops_counter
|
|
Radek Vokál |
0fc81e |
{
|
|
Radek Vokál |
0fc81e |
opcode = tvb_get_ntohl(tvb, offset);
|
|
Radek Vokál |
0fc81e |
@@ -7064,6 +7066,15 @@ dissect_nfs_argop4(tvbuff_t *tvb, int of
|
|
Radek Vokál |
0fc81e |
|
|
Radek Vokál |
0fc81e |
if (newftree == NULL) break;
|
|
Radek Vokál |
0fc81e |
|
|
Radek Vokál |
0fc81e |
+ if (opcode != NFS4_OP_PUTFH) {
|
|
Radek Vokál |
0fc81e |
+ if (check_col(pinfo->cinfo, COL_INFO)) {
|
|
Radek Vokál |
0fc81e |
+ col_append_fstr(pinfo->cinfo, COL_INFO, " %s",
|
|
Radek Vokál |
0fc81e |
+ names_nfsv4_operation[opcode - 3].strptr);
|
|
Radek Vokál |
0fc81e |
+ }
|
|
Radek Vokál |
0fc81e |
+ }
|
|
Radek Vokál |
0fc81e |
+ proto_item_append_text(tree, " %s",
|
|
Radek Vokál |
0fc81e |
+ names_nfsv4_operation[opcode - 3].strptr);
|
|
Radek Vokál |
0fc81e |
+
|
|
Radek Vokál |
0fc81e |
switch(opcode)
|
|
Radek Vokál |
0fc81e |
{
|
|
Radek Vokál |
0fc81e |
case NFS4_OP_ACCESS:
|
|
Radek Vokál |
0fc81e |
@@ -7391,6 +7402,8 @@ dissect_nfs_resop4(tvbuff_t *tvb, int of
|
|
Radek Vokál |
0fc81e |
|
|
Radek Vokál |
0fc81e |
if (ftree == NULL) return offset; /* error adding new subtree */
|
|
Radek Vokál |
0fc81e |
|
|
Radek Vokál |
0fc81e |
+ proto_item_append_text(tree, ", Ops(%d):", ops);
|
|
Radek Vokál |
0fc81e |
+
|
|
Radek Vokál |
0fc81e |
for (ops_counter = 0; ops_counter < ops; ops_counter++)
|
|
Radek Vokál |
0fc81e |
{
|
|
Radek Vokál |
0fc81e |
opcode = tvb_get_ntohl(tvb, offset);
|
|
Radek Vokál |
0fc81e |
@@ -7418,6 +7431,17 @@ dissect_nfs_resop4(tvbuff_t *tvb, int of
|
|
Radek Vokál |
0fc81e |
|
|
Radek Vokál |
0fc81e |
offset = dissect_nfs_nfsstat4(tvb, offset, newftree, &status);
|
|
Radek Vokál |
0fc81e |
|
|
Radek Vokál |
0fc81e |
+ if (check_col(pinfo->cinfo, COL_INFO)) {
|
|
Radek Vokál |
0fc81e |
+ if (status != NFS4_OK) {
|
|
Radek Vokál |
0fc81e |
+ col_append_fstr(pinfo->cinfo, COL_INFO, " %s(%d)",
|
|
Radek Vokál |
0fc81e |
+ names_nfsv4_operation[opcode - 3].strptr, status);
|
|
Radek Vokál |
0fc81e |
+ } else if (opcode != NFS4_OP_PUTFH) {
|
|
Radek Vokál |
0fc81e |
+ col_append_fstr(pinfo->cinfo, COL_INFO, " %s",
|
|
Radek Vokál |
0fc81e |
+ names_nfsv4_operation[opcode - 3].strptr);
|
|
Radek Vokál |
0fc81e |
+ }
|
|
Radek Vokál |
0fc81e |
+ }
|
|
Radek Vokál |
0fc81e |
+ proto_item_append_text(tree, " %s(%d)",
|
|
Radek Vokál |
0fc81e |
+ names_nfsv4_operation[opcode - 3].strptr, status);
|
|
Radek Vokál |
0fc81e |
/*
|
|
Radek Vokál |
0fc81e |
* With the exception of NFS4_OP_LOCK, NFS4_OP_LOCKT, and
|
|
Radek Vokál |
0fc81e |
* NFS4_OP_SETATTR, all other ops do *not* return data with the
|
|
Radek Vokál |
0fc81e |
@@ -7662,7 +7686,7 @@ static const value_string nfsv3_proc_val
|
|
Radek Vokál |
0fc81e |
static const vsff nfs4_proc[] = {
|
|
Radek Vokál |
0fc81e |
{ 0, "NULL",
|
|
Radek Vokál |
0fc81e |
dissect_nfs3_null_call, dissect_nfs3_null_reply },
|
|
Radek Vokál |
0fc81e |
- { 1, "COMPOUND",
|
|
Radek Vokál |
0fc81e |
+ { 1, "COMP",
|
|
Radek Vokál |
0fc81e |
dissect_nfs4_compound_call, dissect_nfs4_compound_reply },
|
|
Radek Vokál |
0fc81e |
{ 0, NULL, NULL, NULL }
|
|
Radek Vokál |
0fc81e |
};
|