2 * Copyright (c) 2001 William C. Fenner.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that: (1) source code
7 * distributions retain the above copyright notice and this paragraph
8 * in its entirety, and (2) distributions including binary code include
9 * the above copyright notice and this paragraph in its entirety in
10 * the documentation or other materials provided with the distribution.
11 * The name of William C. Fenner may not be used to endorse or
12 * promote products derived from this software without specific prior
13 * written permission. THIS SOFTWARE IS PROVIDED ``AS IS'' AND
14 * WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT
15 * LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
16 * FOR A PARTICULAR PURPOSE.
19 static const char rcsid
[] _U_
=
20 "@(#) $Header: /tcpdump/master/tcpdump/print-msdp.c,v 1.7 2005-04-06 21:32:41 mcr Exp $";
27 #include <tcpdump-stdinc.h>
32 #include "interface.h"
33 #include "addrtoname.h"
36 #define MSDP_TYPE_MAX 7
39 msdp_print(const unsigned char *sp
, u_int length
)
41 unsigned int type
, len
;
44 /* See if we think we're at the beginning of a compound packet */
46 len
= EXTRACT_16BITS(sp
+ 1);
47 if (len
> 1500 || len
< 3 || type
== 0 || type
> MSDP_TYPE_MAX
)
48 goto trunc
; /* not really truncated, but still not decodable */
49 (void)printf(" msdp:");
53 len
= EXTRACT_16BITS(sp
+ 1);
54 if (len
> 1400 || vflag
)
55 printf(" [len %u]", len
);
61 case 1: /* IPv4 Source-Active */
62 case 3: /* IPv4 Source-Active Response */
66 (void)printf(" SA-Response");
68 (void)printf(" %u entries", *sp
);
69 if ((u_int
)((*sp
* 12) + 8) < len
) {
70 (void)printf(" [w/data]");
73 ip_print(gndo
, sp
+ *sp
* 12 + 8 - 3,
74 len
- (*sp
* 12 + 8));
79 (void)printf(" SA-Request");
81 (void)printf(" for %s", ipaddr_string(sp
+ 1));
84 (void)printf(" Keepalive");
86 (void)printf("[len=%d] ", len
);
89 (void)printf(" Notification");
92 (void)printf(" [type=%d len=%d]", type
, len
);
100 (void)printf(" [|msdp]");
105 * c-style: whitesmith