]> git.ipfire.org Git - thirdparty/iptables.git/commitdiff
rename 'host' in 'unicast'
authorHarald Welte <laforge@gnumonks.org>
Wed, 7 Aug 2002 09:54:45 +0000 (09:54 +0000)
committerHarald Welte <laforge@gnumonks.org>
Wed, 7 Aug 2002 09:54:45 +0000 (09:54 +0000)
extensions/libipt_pkttype.c

index c60cb28bd2ef60d3289fae3bf76b0e20832972b6..9141e480d48b5ffd0872325e5d81209dd2553104 100644 (file)
@@ -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()