openthread/ot/types/
dnssd_counters.rs

1// Copyright 2022 The Fuchsia Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5use crate::prelude_internal::*;
6
7/// This structure represents DNS-SD server counters.
8///
9/// Functional equivalent of [`otsys::otDnssdCounters`](crate::otsys::otDnssdCounters).
10#[derive(Debug, Default, Clone)]
11#[repr(transparent)]
12pub struct DnssdCounters(pub otDnssdCounters);
13
14impl_ot_castable!(DnssdCounters, otDnssdCounters);
15
16impl DnssdCounters {
17    /// The number of successful responses.
18    pub fn success_response(&self) -> u32 {
19        self.0.mSuccessResponse
20    }
21
22    /// The number of server failure responses.
23    pub fn server_failure_response(&self) -> u32 {
24        self.0.mServerFailureResponse
25    }
26
27    /// The number of format error responses.
28    pub fn format_error_response(&self) -> u32 {
29        self.0.mFormatErrorResponse
30    }
31
32    /// The number of name error responses.
33    pub fn name_error_response(&self) -> u32 {
34        self.0.mNameErrorResponse
35    }
36
37    /// The number of 'not implemented' responses.
38    pub fn not_implemented_response(&self) -> u32 {
39        self.0.mNotImplementedResponse
40    }
41
42    /// The number of other responses.
43    pub fn other_response(&self) -> u32 {
44        self.0.mOtherResponse
45    }
46
47    /// The number of queries completely resolved by the local SRP server.
48    pub fn resolved_by_srp(&self) -> u32 {
49        self.0.mResolvedBySrp
50    }
51
52    /// Represents the count of queries, responses, failures handled by upstream DNS server
53    pub fn upstream_dns_counters(&self) -> UpstreamDnsCounters {
54        self.0.mUpstreamDnsCounters.into()
55    }
56}
57
58#[derive(Debug, Default, Clone)]
59#[repr(transparent)]
60/// Represents the count of queries, responses, failures handled by upstream DNS server
61///
62/// Functional equivalent of [`otsys::otUpstreamDnsCounters`](crate::otsys::otUpstreamDnsCounters).
63pub struct UpstreamDnsCounters(pub otUpstreamDnsCounters);
64
65impl_ot_castable!(UpstreamDnsCounters, otUpstreamDnsCounters);
66
67impl UpstreamDnsCounters {
68    /// The number of queries forwarded
69    pub fn queries(&self) -> u32 {
70        self.0.mQueries
71    }
72
73    /// The number of responses forwarded
74    pub fn responses(&self) -> u32 {
75        self.0.mResponses
76    }
77
78    /// The number of upstream DNS failures
79    pub fn failures(&self) -> u32 {
80        self.0.mFailures
81    }
82}