summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog3
-rw-r--r--configure.in2
-rw-r--r--iftop.c2
3 files changed, 4 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 618efb9..1739ed6 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -4,7 +4,8 @@ $Id$
Attributions apply to all preceding items up to the next blank line.
Unattributed items are by Paul Warren and Chris Lightfoot.
-0.16
+0.16 28/02/04
+* Added support for DLT_NULL
* Fix for pthread.c behaviour on Solaris.
* Build fixes for gcc 3.4+
diff --git a/configure.in b/configure.in
index 2f75f4f..b146062 100644
--- a/configure.in
+++ b/configure.in
@@ -21,7 +21,7 @@ AC_CONFIG_AUX_DIR(config)
AC_CANONICAL_SYSTEM
AM_CONFIG_HEADER(config.h)
-AM_INIT_AUTOMAKE(iftop, "0.15")
+AM_INIT_AUTOMAKE(iftop, "0.16")
AC_DEFINE_UNQUOTED(IFTOP_VERSION, "$VERSION", [The iftop version number])
diff --git a/iftop.c b/iftop.c
index 6dc8a8f..c0f95fc 100644
--- a/iftop.c
+++ b/iftop.c
@@ -481,7 +481,7 @@ void packet_init() {
if(dlt == DLT_EN10MB) {
packet_handler = handle_eth_packet;
}
- else if(dlt == DLT_RAW) {
+ else if(dlt == DLT_RAW || dlt == DLT_NULL) {
packet_handler = handle_raw_packet;
}
else if(dlt == DLT_IEEE802) {