-
Notifications
You must be signed in to change notification settings - Fork 15
/
Utils.h
36 lines (33 loc) · 1.36 KB
/
Utils.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/*
*
* (C) 2021-24 - ntop.org
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
* This program 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*
*/
#ifndef _UTILS_H_
#define _UTILS_H_
class Utils {
public:
static std::string ltrim(std::string &s);
static bool toHex(char *in, u_int in_len, char *out, u_int out_len);
static bool fromHex(char *in, u_int in_len, char *out, u_int out_len);
static char* intoaV4(unsigned int addr, char* buf, u_short bufLen);
static char* intoaV6(struct ndpi_in6_addr ipv6, u_int8_t bitmask, char* buf, u_short bufLen);
static std::string execCmd(const char *cmd);
static int sendTelegramMessage(std::string bot_token, std::string chat_id, std::string message);
static void zapNewline(std::string &s);
};
#endif /* _UTILS_H_ */