blob: 05171fbdb5804628efebed2b20e74fefae7c2ec9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
diff -urN ./iptraf-3.0.0.orig/src/othptab.c ./iptraf-3.0.0/src/othptab.c
--- ./iptraf-3.0.0.orig/src/othptab.c 2006-03-21 23:41:53.000000000 +0100
+++ ./iptraf-3.0.0/src/othptab.c 2006-03-21 23:42:30.000000000 +0100
@@ -560,8 +560,8 @@
case ICMP6_DST_UNREACH_ADMIN:
strcpy(additional, "admin");
break;
- case ICMP6_DST_UNREACH_NOTNEIGHBOR:
- strcpy(additional, "not neigh");
+ case ICMP6_DST_UNREACH_BEYONDSCOPE:
+ strcpy(additional, "beyondscope");
break;
case ICMP6_DST_UNREACH_ADDR:
strcpy(additional, "unreach addr");
@@ -592,15 +592,6 @@
case ND_ROUTER_ADVERT:
strcpy(description, "router adv");
break;
- case ICMP6_MEMBERSHIP_QUERY:
- strcpy(description, "mbrship query");
- break;
- case ICMP6_MEMBERSHIP_REPORT:
- strcpy(description, "mbrship report");
- break;
- case ICMP6_MEMBERSHIP_REDUCTION:
- strcpy(description, "mbrship reduc");
- break;
case ND_NEIGHBOR_SOLICIT:
strcpy(description, "neigh sol");
break;
|