summaryrefslogtreecommitdiffstats
path: root/extensions
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2002-08-07 09:54:45 +0000
committerHarald Welte <laforge@gnumonks.org>2002-08-07 09:54:45 +0000
commitef22543936c50c57a8eab412a93a4d07d63e0e83 (patch)
tree9e3b864df0a3ff13ddf07bb0fbda81e0bb700bbb /extensions
parentbfc3369c025a8dab814c4f290c50aace52daa126 (diff)
rename 'host' in 'unicast'
Diffstat (limited to 'extensions')
-rw-r--r--extensions/libipt_pkttype.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/extensions/libipt_pkttype.c b/extensions/libipt_pkttype.c
index c60cb28b..9141e480 100644
--- a/extensions/libipt_pkttype.c
+++ b/extensions/libipt_pkttype.c
@@ -28,7 +28,7 @@ struct pkttypes {
};
static const struct pkttypes supported_types[] = {
- {"host", PACKET_HOST, 1, "to us"},
+ {"unicast", PACKET_HOST, 1, "to us"},
{"broadcast", PACKET_BROADCAST, 1, "to all"},
{"multicast", PACKET_MULTICAST, 1, "to group"},
/*
@@ -38,7 +38,7 @@ static const struct pkttypes supported_types[] = {
/* aliases */
{"bcast", PACKET_BROADCAST, 0, NULL},
{"mcast", PACKET_MULTICAST, 0, NULL},
- {"for-us", PACKET_HOST, 0, NULL}
+ {"host", PACKET_HOST, 0, NULL}
};
static void print_types()