2018-02-23 03:53:12 -05:00
|
|
|
# Copyright (C) Internet Systems Consortium, Inc. ("ISC")
|
2015-09-30 19:45:36 -04:00
|
|
|
#
|
2016-06-27 00:56:38 -04:00
|
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
2018-02-23 03:53:12 -05:00
|
|
|
#
|
|
|
|
|
# See the COPYRIGHT file distributed with this work for additional
|
|
|
|
|
# information regarding copyright ownership.
|
2015-09-30 19:45:36 -04:00
|
|
|
|
2015-09-29 22:56:31 -04:00
|
|
|
list1=`grep LOGCATEGORY lib/*/include/*/*.h bin/named/include/named/*.h |
|
|
|
|
|
grep "#define.*(&" |
|
|
|
|
|
sed -e 's/.*LOGCATEGORY_\([A-Z_]*\).*/\1/' -e 's/^RRL$/rate-limit/' |
|
|
|
|
|
tr '[A-Z]' '[a-z]' |
|
2017-10-06 21:11:02 -04:00
|
|
|
tr _ - | sed 's/^tat$/trust-anchor-telemetry/' | sort -u`
|
2015-09-29 22:56:31 -04:00
|
|
|
list2=`sed -n 's;.*<para><command>\(.*\)</command></para>;\1;p' doc/arm/logging-categories.xml | tr '[A-Z]' '[a-z]' | sort -u`
|
|
|
|
|
for i in $list1
|
|
|
|
|
do
|
|
|
|
|
ok=no
|
|
|
|
|
for j in $list2
|
|
|
|
|
do
|
|
|
|
|
if test $i = $j
|
|
|
|
|
then
|
|
|
|
|
ok=yes
|
|
|
|
|
fi
|
|
|
|
|
done
|
|
|
|
|
if test $ok = no
|
|
|
|
|
then
|
|
|
|
|
echo "$i missing from documentation."
|
|
|
|
|
fi
|
|
|
|
|
done
|
|
|
|
|
for i in $list2
|
|
|
|
|
do
|
|
|
|
|
ok=no
|
|
|
|
|
for j in $list1
|
|
|
|
|
do
|
|
|
|
|
if test $i = $j
|
|
|
|
|
then
|
|
|
|
|
ok=yes
|
|
|
|
|
fi
|
|
|
|
|
done
|
|
|
|
|
if test $ok = no
|
|
|
|
|
then
|
|
|
|
|
echo "$i not in code."
|
|
|
|
|
fi
|
|
|
|
|
done
|