summaryrefslogtreecommitdiff
path: root/libndp/ndp_private.h
blob: a842677beee885afd77037f1246ebd7298301111 (plain)
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
/*
 *   ndp_private.h - Neighbour discovery library private header
 *   Copyright (C) 2013 Jiri Pirko <jiri@resnulli.us>
 *
 *   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 Street, Fifth Floor, Boston, MA  02110-1301  USA
 */

#ifndef _NDP_PRIVATE_H_
#define _NDP_PRIVATE_H_

#include <stdarg.h>
#include <syslog.h>
#include <ndp.h>

#include "list.h"

#define NDP_EXPORT __attribute__ ((visibility("default")))

/**
 * SECTION: ndp
 * @short_description: libndp context
 */

struct ndp {
	int sock;
	void (*log_fn)(struct ndp *ndp, int priority,
		       const char *file, int line, const char *fn,
		       const char *format, va_list args);
	int log_priority;
	struct list_item msgrcv_handler_list;
};

/**
 * SECTION: logging
 * @short_description: libndp logging facility
 */

void ndp_log(struct ndp *ndp, int priority,
	     const char *file, int line, const char *fn,
	     const char *format, ...);

static inline void __attribute__((always_inline, format(printf, 2, 3)))
ndp_log_null(struct ndp *ndp, const char *format, ...) {}

#define ndp_log_cond(ndp, prio, arg...)					\
	do {								\
		if (ndp_get_log_priority(ndp) >= prio)			\
			ndp_log(ndp, prio, __FILE__, __LINE__,		\
				__FUNCTION__, ## arg);			\
	} while (0)

#ifdef ENABLE_LOGGING
#  ifdef ENABLE_DEBUG
#    define dbg(ndp, arg...) ndp_log_cond(ndp, LOG_DEBUG, ## arg)
#  else
#    define dbg(ndp, arg...) ndp_log_null(ndp, ## arg)
#  endif
#  define info(ndp, arg...) ndp_log_cond(ndp, LOG_INFO, ## arg)
#  define warn(ndp, arg...) ndp_log_cond(ndp, LOG_WARNING, ## arg)
#  define err(ndp, arg...) ndp_log_cond(ndp, LOG_ERR, ## arg)
#else
#  define dbg(ndp, arg...) ndp_log_null(ndp, ## arg)
#  define info(ndp, arg...) ndp_log_null(ndp, ## arg)
#  define warn(ndp, arg...) ndp_log_null(ndp, ## arg)
#  define err(ndp, arg...) ndp_log_null(ndp, ## arg)
#endif

/**
 * SECTION: function prototypes
 * @short_description: prototypes for internal functions
 */

#endif /* _NDP_PRIVATE_H_ */