diff --git a/man/man8/ip-xfrm.8 b/man/man8/ip-xfrm.8 index 11f71047..a0bbef55 100644 --- a/man/man8/ip-xfrm.8 +++ b/man/man8/ip-xfrm.8 @@ -477,7 +477,7 @@ Encryption algorithms include Authentication algorithms include .BR digest_null ", " hmac(md5) ", " hmac(sha1) ", " hmac(sha256) "," -.BR hmac(sha384) ", " hmac(sha512) ", " hmac(rmd610) ", and " xcbc(aes) "." +.BR hmac(sha384) ", " hmac(sha512) ", " hmac(rmd160) ", and " xcbc(aes) "." Authenticated encryption with associated data (AEAD) algorithms include .BR rfc4106(gcm(aes)) ", " rfc4309(ccm(aes)) ", and " rfc4543(gcm(aes)) "." diff --git a/tc/f_flower.c b/tc/f_flower.c index 6d9a3b70..4d305b6e 100644 --- a/tc/f_flower.c +++ b/tc/f_flower.c @@ -53,10 +53,11 @@ static void explain(void) " dst_port PORT-NUMBER |\n" " src_port PORT-NUMBER |\n" " type ICMP-TYPE |\n" - " code ICMP-CODE }\n" - " enc_dst_ip PREFIX |\n" - " enc_src_ip PREFIX |\n" - " enc_key_id [ KEY-ID ] }\n" + " code ICMP-CODE |\n" + " enc_dst_ip [ IPV4-ADDR | IPV6-ADDR ] |\n" + " enc_src_ip [ IPV4-ADDR | IPV6-ADDR ] |\n" + " enc_key_id [ KEY-ID ] |\n" + " enc_dst_port [ UDP-PORT ] }\n" " FILTERID := X:Y:Z\n" " MASKED_LLADDR := { LLADDR | LLADDR/MASK | LLADDR/BITS }\n" " ACTION-SPEC := ... look at individual actions\n" diff --git a/tc/m_tunnel_key.c b/tc/m_tunnel_key.c index 58a3042a..3ceec1cb 100644 --- a/tc/m_tunnel_key.c +++ b/tc/m_tunnel_key.c @@ -22,7 +22,7 @@ static void explain(void) { fprintf(stderr, "Usage: tunnel_key unset\n"); - fprintf(stderr, " tunnel_key set id TUNNELID src_ip IP dst_ip IP\n"); + fprintf(stderr, " tunnel_key set id TUNNELID src_ip IP dst_ip IP dst_port UDP_PORT\n"); } static void usage(void) diff --git a/tc/tc_util.h b/tc/tc_util.h index f198a4ad..4db26c6d 100644 --- a/tc/tc_util.h +++ b/tc/tc_util.h @@ -2,6 +2,7 @@ #define _TC_UTIL_H_ 1 #define MAX_MSG 16384 +#include #include #include #include