File: log_funcs.h

package info (click to toggle)
rtpengine 13.5.1.4-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 13,676 kB
  • sloc: ansic: 86,775; perl: 59,422; python: 3,193; sh: 1,037; makefile: 687; asm: 211
file content (30 lines) | stat: -rw-r--r-- 559 bytes parent folder | download | duplicates (2)
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
#ifndef _LOG_FUNCS_H_
#define _LOG_FUNCS_H_

#include "helpers.h"
#include "str.h"
#include "types.h"

struct ice_agent;
struct call_media;

INLINE void log_info_reset(void) {
}
INLINE void log_info_pop(void) {
}
INLINE void log_info_pop_until(void *p) {
}
INLINE void log_info_call(call_t *c) {
}
INLINE void log_info_stream_fd(stream_fd *sfd) {
}
INLINE void log_info_str(const str *s) {
}
INLINE void log_info_c_string(const char *s) {
}
INLINE void log_info_ice_agent(struct ice_agent *ag) {
}
INLINE void log_info_media(struct call_media *m) {
}

#endif