mirror of
https://git.kernel.org/pub/scm/network/wireless/iwd.git
synced 2024-12-03 00:59:28 +01:00
e565b75032
This will help to get rid of magic number use throughout the project. The definitions should be limited to global magic numbers that are used throughout the project, for example SSID length, MAC address length, etc.
14 lines
195 B
C
14 lines
195 B
C
/*
|
|
* Wireless daemon for Linux
|
|
* Copyright (C) 2024 Cruise, LLC
|
|
*
|
|
* SPDX-License-Identifier: LGPL-2.1-or-later
|
|
*/
|
|
|
|
#ifndef __DEFS_H__
|
|
#define __DEFS_H__
|
|
|
|
#define SSID_MAX_SIZE 32
|
|
|
|
#endif
|