diff options
author | cheoleun moon <chleun.moon@samsung.com> | 2023-02-27 14:44:28 +0900 |
---|---|---|
committer | cheoleun moon <chleun.moon@samsung.com> | 2023-02-27 14:46:39 +0900 |
commit | 316f2cf646f82fe0679d92aa4864178f7dd47812 (patch) | |
tree | 21c7ca684dbf38fae96e3f73f392297820d348a5 /src/metrics.h | |
parent | aff4fe95c96ee39f595d743b29245b5813bdece1 (diff) | |
parent | 70d82e00397c5699a9f37ed93678560116f8ac62 (diff) | |
download | dnsmasq-accepted/tizen_9.0_unified.tar.gz dnsmasq-accepted/tizen_9.0_unified.tar.bz2 dnsmasq-accepted/tizen_9.0_unified.zip |
Merge tag 'upstream/2.88' into tizenHEADtizen_9.0_m2_releasetizen_8.0_m2_releaseaccepted/tizen/unified/20230302.131053accepted/tizen/9.0/unified/20241030.232927accepted/tizen/8.0/unified/20231005.094758tizen_9.0tizen_8.0tizenaccepted/tizen_unifiedaccepted/tizen_9.0_unifiedaccepted/tizen_8.0_unified
Change-Id: I0bd9310f2be4823799acb0901eb09625b3cdf166
Diffstat (limited to 'src/metrics.h')
-rw-r--r-- | src/metrics.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/metrics.h b/src/metrics.h index cecf8c8..6f62a40 100644 --- a/src/metrics.h +++ b/src/metrics.h @@ -1,4 +1,4 @@ -/* dnsmasq is Copyright (c) 2000-2021 Simon Kelley +/* dnsmasq is Copyright (c) 2000-2022 Simon Kelley This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -21,6 +21,8 @@ enum { METRIC_DNS_QUERIES_FORWARDED, METRIC_DNS_AUTH_ANSWERED, METRIC_DNS_LOCAL_ANSWERED, + METRIC_DNS_STALE_ANSWERED, + METRIC_DNS_UNANSWERED_QUERY, METRIC_BOOTP, METRIC_PXE, METRIC_DHCPACK, @@ -41,3 +43,4 @@ enum { }; const char* get_metric_name(int); +void clear_metrics(void); |