diff options
author | hannes <hannes> | 2004-06-06 19:20:03 +0000 |
---|---|---|
committer | hannes <hannes> | 2004-06-06 19:20:03 +0000 |
commit | 21480b97d89d0edebe1cb706503a9bee117bd9db (patch) | |
tree | 94e2b462bfd8434bffd705a783caf1fcdf4755f1 /print-mpls.c | |
parent | f8686bf2241754a3d9110ab6c6d89a9c53df85f4 (diff) | |
download | tcpdump-21480b97d89d0edebe1cb706503a9bee117bd9db.tar.gz |
add baseline LSP-PING support per draft-ietf-mpls-lsp-ping-05
Diffstat (limited to 'print-mpls.c')
-rw-r--r-- | print-mpls.c | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/print-mpls.c b/print-mpls.c index 319e8b21..c56f2643 100644 --- a/print-mpls.c +++ b/print-mpls.c @@ -28,7 +28,7 @@ #ifndef lint static const char rcsid[] _U_ = - "@(#) $Header: /tcpdump/master/tcpdump/print-mpls.c,v 1.10 2003-11-16 09:36:29 guy Exp $ (LBL)"; + "@(#) $Header: /tcpdump/master/tcpdump/print-mpls.c,v 1.11 2004-06-06 19:20:04 hannes Exp $ (LBL)"; #endif #ifdef HAVE_CONFIG_H @@ -183,14 +183,3 @@ mpls_print(const u_char *bp, u_int length) trunc: printf("[|MPLS]"); } - -/* - * draft-ietf-mpls-lsp-ping-02.txt - */ -void -mpls_lsp_ping_print(const u_char *pptr, u_int length) -{ - printf("UDP, LSP-PING, length: %u", length); - if (vflag >1) - print_unknown_data(pptr,"\n\t ", length); -} |