2020-04-15 16:24:10 +03:00
|
|
|
/**
|
|
|
|
|
* Copyright (C) 2011-2012 Juho Vähä-Herttua
|
|
|
|
|
*
|
|
|
|
|
* 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.
|
2023-02-09 10:32:36 -05:00
|
|
|
*
|
|
|
|
|
*==================================================================
|
|
|
|
|
* modified by fduncanh 2021-2022
|
2020-04-15 16:24:10 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef UTILS_H
|
|
|
|
|
#define UTILS_H
|
|
|
|
|
|
2022-02-16 12:03:25 -05:00
|
|
|
#include <stdint.h>
|
|
|
|
|
|
2020-04-15 16:24:10 +03:00
|
|
|
char *utils_strsep(char **stringp, const char *delim);
|
|
|
|
|
int utils_read_file(char **dst, const char *pemstr);
|
|
|
|
|
int utils_hwaddr_raop(char *str, int strlen, const char *hwaddr, int hwaddrlen);
|
|
|
|
|
int utils_hwaddr_airplay(char *str, int strlen, const char *hwaddr, int hwaddrlen);
|
|
|
|
|
char *utils_parse_hex(const char *str, int str_len, int *data_len);
|
2025-04-22 17:13:13 -04:00
|
|
|
char *utils_hex_to_string(const unsigned char *hex, int hex_len);
|
2021-12-12 03:31:26 -05:00
|
|
|
char *utils_data_to_string(const unsigned char *data, int datalen, int chars_per_line);
|
|
|
|
|
char *utils_data_to_text(const char *data, int datalen);
|
2022-02-16 12:03:25 -05:00
|
|
|
void ntp_timestamp_to_time(uint64_t ntp_timestamp, char *timestamp, size_t maxsize);
|
|
|
|
|
void ntp_timestamp_to_seconds(uint64_t ntp_timestamp, char *timestamp, size_t maxsize);
|
2024-12-10 01:36:32 -05:00
|
|
|
const char *gmt_time_string();
|
2024-05-12 01:24:38 -04:00
|
|
|
int utils_ipaddress_to_string(int addresslen, const unsigned char *address,
|
|
|
|
|
unsigned int zone_id, char *string, int len);
|
2025-02-24 03:50:10 -05:00
|
|
|
char *utils_strip_data_from_plist_xml(char * plist_xml);
|
2026-01-16 23:35:44 -05:00
|
|
|
int parse_int(const char * str);
|
2021-12-12 03:31:26 -05:00
|
|
|
#endif
|