Imported Upstream version 1.24
[platform/upstream/connman.git] / src / shared / util.h
1 /*
2  *
3  *  Connection Manager
4  *
5  *  Copyright (C) 2012  Intel Corporation. All rights reserved.
6  *
7  *
8  *  This library is free software; you can redistribute it and/or
9  *  modify it under the terms of the GNU Lesser General Public
10  *  License as published by the Free Software Foundation; either
11  *  version 2.1 of the License, or (at your option) any later version.
12  *
13  *  This library is distributed in the hope that it will be useful,
14  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
15  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  *  Lesser General Public License for more details.
17  *
18  *  You should have received a copy of the GNU Lesser General Public
19  *  License along with this library; if not, write to the Free Software
20  *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
21  *
22  */
23
24 #include <glib.h>
25
26 typedef void (*util_debug_func_t)(const char *str, void *user_data);
27
28 void util_debug(util_debug_func_t function, void *user_data,
29                                                 const char *format, ...)
30                                         __attribute__((format(printf, 3, 4)));
31
32 void util_hexdump(const char dir, const unsigned char *buf, size_t len,
33                                 util_debug_func_t function, void *user_data);
34
35 struct cb_data {
36         void *cb;
37         void *user_data;
38         void *data;
39 };
40
41 static inline struct cb_data *cb_data_new(void *cb, void *user_data)
42 {
43         struct cb_data *ret;
44
45         ret = g_new0(struct cb_data, 1);
46         ret->cb = cb;
47         ret->user_data = user_data;
48
49         return ret;
50 }