*/
#ifndef lint
-static const char rcsid[] _U_ =
-"@(#) $Header: /tcpdump/master/tcpdump/print-tcp.c,v 1.135 2008-11-09 23:35:03 mcr Exp $ (LBL)";
#else
__RCSID("$NetBSD: print-tcp.c,v 1.8 2007/07/24 11:53:48 drochner Exp $");
#endif
if ((flags & TH_RST) && vflag) {
print_tcp_rst_data(bp, length);
return;
- }
+ }
if (packettype) {
switch (packettype) {
if (TTEST(rp->rm_direction)) {
direction = (enum sunrpc_msg_type)EXTRACT_32BITS(&rp->rm_direction);
if (dport == NFS_PORT && direction == SUNRPC_CALL) {
- (void)printf(" | ");
+ (void)printf(": NFS request xid %u ", EXTRACT_32BITS(&rp->rm_xid));
nfsreq_print_noaddr((u_char *)rp, fraglen, (u_char *)ip);
return;
}
if (sport == NFS_PORT && direction == SUNRPC_REPLY) {
- (void)printf(" | ");
+ (void)printf(": NFS reply xid %u ", EXTRACT_32BITS(&rp->rm_xid));
nfsreply_print_noaddr((u_char *)rp, fraglen, (u_char *)ip);
return;
}