Imported Upstream version 1.38
[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 <sys/time.h>
25
26 #include <glib.h>
27
28 typedef void (*util_debug_func_t)(const char *str, void *user_data);
29
30 void util_debug(util_debug_func_t function, void *user_data,
31                                                 const char *format, ...)
32                                         __attribute__((format(printf, 3, 4)));
33
34 void util_hexdump(const char dir, const unsigned char *buf, size_t len,
35                                 util_debug_func_t function, void *user_data);
36
37 struct cb_data {
38         void *cb;
39         void *user_data;
40         void *data;
41 };
42
43 static inline struct cb_data *cb_data_new(void *cb, void *user_data)
44 {
45         struct cb_data *ret;
46
47         ret = g_new0(struct cb_data, 1);
48         ret->cb = cb;
49         ret->user_data = user_data;
50
51         return ret;
52 }
53
54 void util_iso8601_to_timeval(char *str, struct timeval *time);
55 char *util_timeval_to_iso8601(struct timeval *time);