2014-12-18 10:41:33 +01:00
|
|
|
/*
|
|
|
|
*
|
|
|
|
* Wireless daemon for Linux
|
|
|
|
*
|
|
|
|
* Copyright (C) 2013-2014 Intel Corporation. All rights reserved.
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __UTIL_H
|
|
|
|
#define __UTIL_H
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
const char *util_ssid_to_utf8(size_t len, const uint8_t *ssid);
|
2015-04-08 20:18:35 +02:00
|
|
|
bool util_ssid_is_utf8(size_t len, const uint8_t *ssid);
|
2016-06-07 01:23:17 +02:00
|
|
|
const char *util_address_to_string(const uint8_t *addr);
|
2014-12-18 10:41:33 +01:00
|
|
|
|
2014-12-30 02:41:24 +01:00
|
|
|
static inline uint8_t util_bit_field(const uint8_t oct, int start, int num)
|
|
|
|
{
|
|
|
|
unsigned char mask = (1 << num) - 1;
|
|
|
|
return (oct >> start) & mask;
|
|
|
|
}
|
2014-12-30 02:43:23 +01:00
|
|
|
|
|
|
|
static inline bool util_is_bit_set(const uint8_t oct, int bit)
|
|
|
|
{
|
|
|
|
int mask = 1 << bit;
|
|
|
|
return oct & mask ? true : false;
|
|
|
|
}
|
2015-02-26 14:30:09 +01:00
|
|
|
|
|
|
|
bool _msg_append_attr(struct l_genl_msg *msg,
|
|
|
|
uint16_t type, const char *type_str,
|
|
|
|
uint16_t len, const void *value);
|
|
|
|
|
|
|
|
#define msg_append_attr(msg, type, len, value) \
|
|
|
|
_msg_append_attr(msg, type, #type, len, value)
|
2014-12-18 10:41:33 +01:00
|
|
|
#endif /* __UTIL_H */
|