summaryrefslogtreecommitdiffstats
path: root/mqtt-tester/src/client_report.rs
diff options
context:
space:
mode:
Diffstat (limited to 'mqtt-tester/src/client_report.rs')
-rw-r--r--mqtt-tester/src/client_report.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/mqtt-tester/src/client_report.rs b/mqtt-tester/src/client_report.rs
index c99c734..b22bfe1 100644
--- a/mqtt-tester/src/client_report.rs
+++ b/mqtt-tester/src/client_report.rs
@@ -199,6 +199,7 @@ macro_rules! wait_for_output {
}};
}
+#[tracing::instrument(skip_all)]
async fn check_connect_packet_reserved_flag_zero(
executable: &ClientExecutable,
) -> miette::Result<Report> {
@@ -252,6 +253,7 @@ fn find_connect_flags(bytes: &[u8]) -> Option<u8> {
Some(getbyte!(connect_flag_position))
}
+#[tracing::instrument(skip_all)]
async fn check_connect_flag_username_set_username_present(
executable: &ClientExecutable,
) -> miette::Result<Report> {
@@ -307,6 +309,7 @@ async fn check_connect_flag_username_set_username_present(
})
}
+#[tracing::instrument(skip_all)]
async fn check_connect_flag_password_set_password_present(
executable: &ClientExecutable,
) -> miette::Result<Report> {
@@ -362,6 +365,7 @@ async fn check_connect_flag_password_set_password_present(
})
}
+#[tracing::instrument(skip_all)]
async fn check_connect_flag_username_zero_means_password_zero(
executable: &ClientExecutable,
) -> miette::Result<Report> {