summaryrefslogtreecommitdiff
path: root/print-nfs.c
diff options
context:
space:
mode:
authorFrancois-Xavier Le Bail <devel.fx.lebail@orange.fr>2018-03-14 16:54:17 +0100
committerFrancois-Xavier Le Bail <devel.fx.lebail@orange.fr>2018-03-16 19:44:47 +0100
commit546558eabd81cfc36a81a4df728fdfea0d83b41a (patch)
tree1c73014ecfb7653ffaf4bfa1855ace7d6bd6e33e /print-nfs.c
parent61f71d2046ced967e1bd998d41c68faf512f75ab (diff)
downloadtcpdump-546558eabd81cfc36a81a4df728fdfea0d83b41a.tar.gz
Add the ndo_protocol field in the netdissect_options structure
Update this field in printer entry functions. It will be used for some printings.
Diffstat (limited to 'print-nfs.c')
-rw-r--r--print-nfs.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/print-nfs.c b/print-nfs.c
index e240a0e7..6866b1d3 100644
--- a/print-nfs.c
+++ b/print-nfs.c
@@ -326,6 +326,7 @@ nfsreply_print(netdissect_options *ndo,
const struct sunrpc_msg *rp;
char srcid[20], dstid[20]; /*fits 32bit*/
+ ndo->ndo_protocol = "nfsreply";
nfserr = 0; /* assume no error */
rp = (const struct sunrpc_msg *)bp;
@@ -361,6 +362,7 @@ nfsreply_noaddr_print(netdissect_options *ndo,
uint32_t rhigh;
enum sunrpc_auth_stat rwhy;
+ ndo->ndo_protocol = "nfsreply_noaddr";
nfserr = 0; /* assume no error */
rp = (const struct sunrpc_msg *)bp;
@@ -530,6 +532,7 @@ nfsreq_noaddr_print(netdissect_options *ndo,
uint32_t access_flags;
struct nfsv3_sattr sa3;
+ ndo->ndo_protocol = "nfsreq_noaddr";
ND_PRINT("%u", length);
nfserr = 0; /* assume no error */
rp = (const struct sunrpc_msg *)bp;