summaryrefslogtreecommitdiff
path: root/print-udp.c
diff options
context:
space:
mode:
authorhannes <hannes>2007-03-27 10:44:09 +0000
committerhannes <hannes>2007-03-27 10:44:09 +0000
commitcb08bf9e3e26325e4fb28ba49efa1cb05b7db6e4 (patch)
tree7fe34517ed141e8a569e946cc21114b861091342 /print-udp.c
parentecfc7918a049cbc52ae87138c9a01cfb9f3dfa3f (diff)
downloadtcpdump-cb08bf9e3e26325e4fb28ba49efa1cb05b7db6e4.tar.gz
add basic skeleton for printing olsr packets as per rfc3626
add a line break in verbose mode fro the ip printer.
Diffstat (limited to 'print-udp.c')
-rw-r--r--print-udp.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/print-udp.c b/print-udp.c
index e8239fc1..2f7ffc77 100644
--- a/print-udp.c
+++ b/print-udp.c
@@ -21,7 +21,7 @@
#ifndef lint
static const char rcsid[] _U_ =
- "@(#) $Header: /tcpdump/master/tcpdump/print-udp.c,v 1.139 2006-03-03 22:31:16 hannes Exp $ (LBL)";
+ "@(#) $Header: /tcpdump/master/tcpdump/print-udp.c,v 1.140 2007-03-27 10:44:09 hannes Exp $ (LBL)";
#endif
#ifdef HAVE_CONFIG_H
@@ -674,6 +674,8 @@ udp_print(register const u_char *bp, u_int length,
lwres_print((const u_char *)(up + 1), length);
else if (ISPORT(LDP_PORT))
ldp_print((const u_char *)(up + 1), length);
+ else if (ISPORT(OLSR_PORT))
+ olsr_print((const u_char *)(up + 1), length);
else if (ISPORT(MPLS_LSP_PING_PORT))
lspping_print((const u_char *)(up + 1), length);
else if (dport == BFD_CONTROL_PORT ||