wlan_trace/names.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 core::ffi::CStr;
6
7pub const CATEGORY_WLAN: &'static CStr = c"wlan";
8pub const NAME_WLANCFG_START: &'static CStr = c"wlancfg:start";
9
10// This name should be the same as defined in
11// //src/connectivity/wlan/drivers/lib/log/cpp/include/common/wlan/drivers/log.h
12pub const NAME_WLANSOFTMAC_TX: &'static CStr = c"wlansoftmac:tx";
13
14// This name should be the same as defined in
15// //src/connectivity/wlan/drivers/lib/log/cpp/include/common/wlan/drivers/log.h
16pub const NAME_WLANSOFTMAC_RX: &'static CStr = c"wlansoftmac:rx";