#include "config.h"
#endif
-#include <tcpdump-stdinc.h>
+#include <netdissect-stdinc.h>
#include <stdio.h>
#include <string.h>
-#include "interface.h"
+#include "netdissect.h"
#include "addrtoname.h"
#include "ethertype.h"
#include "llc.h"
const u_char *p, u_int length)
{
const u_char *ptemp = p;
- struct ie_tlv_header_t *ie_p;
+ const struct ie_tlv_header_t *ie_p;
int olen;
int is_ansi = 0;
u_int codeset;
/* Loop through the rest of IE */
while (length > sizeof(struct ie_tlv_header_t)) {
- ie_p = (struct ie_tlv_header_t *)ptemp;
+ ie_p = (const struct ie_tlv_header_t *)ptemp;
if (length < sizeof(struct ie_tlv_header_t) ||
length < sizeof(struct ie_tlv_header_t) + ie_p->ie_len) {
if (ndo->ndo_vflag) { /* not bark if there is just a trailer */