ClatdController - add mutex annotations
This effectively makes ClatdController single threaded.
Which makes things nice and simple.
Test: atest libbpf_android_test libnetdbpf_test netd_integration_test netd_unit_test netdutils_test resolv_integration_test resolv_unit_test
Bug: 65674744
Change-Id: I352761b6c44c17f9ea0897ea821a826f642659d5
diff --git a/server/Controllers.cpp b/server/Controllers.cpp
index c3b549f..01eae77 100644
--- a/server/Controllers.cpp
+++ b/server/Controllers.cpp
@@ -277,7 +277,7 @@
initIptablesRules();
Stopwatch s;
- clatdCtrl.Init();
+ clatdCtrl.init();
gLog.info("Initializing ClatdController: %.1fms", s.getTimeAndReset());
netdutils::Status tcStatus = trafficCtrl.start();