mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-03 03:20:57 +00:00
Use of the new logging is as simple as issuing the new CLI command or setting the new pjproject.conf option. Other options that can affect the logging are how you have the pjproject log levels mapped to Asterisk log types in pjproject.conf and if you have configured Asterisk to log the DEBUG type messages. Altering the pjproject.conf level mapping shouldn't be necessary for most installations as the default mapping is sensible. Configuring Asterisk to log the DEBUG message type is standard practice for collecting debug information. * Added CLI "pjproject set log level" command to dynamically adjust the maximum pjproject log message level. * Added CLI "pjproject show log level" command to see the currently set maximum pjproject log message level. * Added pjproject.conf startup section "log_level" option to set the initial maximum pjproject log message level so all messages could be captured from initialization. * Set PJ_LOG_MAX_LEVEL to 6 to compile in all defined logging levels into bundled pjproject. Pjproject will use the currently set run time log level to determine if a log message is generated just like Asterisk verbose and debug logging levels. * In log_forwarder(), made always log enabled and mapped pjproject log messages. DEBUG mapped log messages are no longer gated by the current Asterisk debug logging level. * Removed RAII_VAR() from res_pjproject.c:get_log_level(). ASTERISK-26630 #close Change-Id: I6dca12979f482ffb0450aaf58db0fe0f6d2e5389
66 lines
2.0 KiB
C
66 lines
2.0 KiB
C
/*
|
|
* Asterisk config_site.h
|
|
*/
|
|
|
|
#include <sys/select.h>
|
|
|
|
/*
|
|
* Since both pjproject and asterisk source files will include config_site.h,
|
|
* we need to make sure that only pjproject source files include asterisk_malloc_debug.h.
|
|
*/
|
|
#if defined(MALLOC_DEBUG) && !defined(_ASTERISK_ASTMM_H)
|
|
#include "asterisk_malloc_debug.h"
|
|
#endif
|
|
|
|
/*
|
|
* Defining PJMEDIA_HAS_SRTP to 0 does NOT disable Asterisk's ability to use srtp.
|
|
* It only disables the pjmedia srtp transport which Asterisk doesn't use.
|
|
* The reason for the disable is that while Asterisk works fine with older libsrtp
|
|
* versions, newer versions of pjproject won't compile with them.
|
|
*/
|
|
#define PJMEDIA_HAS_SRTP 0
|
|
|
|
#define PJ_HAS_IPV6 1
|
|
#define NDEBUG 1
|
|
#define PJ_MAX_HOSTNAME (256)
|
|
#define PJSIP_MAX_URL_SIZE (512)
|
|
#ifdef PJ_HAS_LINUX_EPOLL
|
|
#define PJ_IOQUEUE_MAX_HANDLES (5000)
|
|
#else
|
|
#define PJ_IOQUEUE_MAX_HANDLES (FD_SETSIZE)
|
|
#endif
|
|
#define PJ_IOQUEUE_HAS_SAFE_UNREG 1
|
|
#define PJ_IOQUEUE_MAX_EVENTS_IN_SINGLE_POLL (16)
|
|
|
|
#define PJ_SCANNER_USE_BITWISE 0
|
|
#define PJ_OS_HAS_CHECK_STACK 0
|
|
#define PJ_LOG_MAX_LEVEL 6
|
|
#define PJ_ENABLE_EXTRA_CHECK 1
|
|
#define PJSIP_MAX_TSX_COUNT ((64*1024)-1)
|
|
#define PJSIP_MAX_DIALOG_COUNT ((64*1024)-1)
|
|
#define PJSIP_UDP_SO_SNDBUF_SIZE (512*1024)
|
|
#define PJSIP_UDP_SO_RCVBUF_SIZE (512*1024)
|
|
#define PJ_DEBUG 0
|
|
#define PJSIP_SAFE_MODULE 0
|
|
#define PJ_HAS_STRICMP_ALNUM 0
|
|
#define PJ_HASH_USE_OWN_TOLOWER 1
|
|
/*
|
|
It is imperative that PJSIP_UNESCAPE_IN_PLACE remain 0 or undefined.
|
|
Enabling it will result in SEGFAULTS when URIs containing escape sequences are encountered.
|
|
*/
|
|
#undef PJSIP_UNESCAPE_IN_PLACE
|
|
#define PJSIP_MAX_PKT_LEN 6000
|
|
|
|
#undef PJ_TODO
|
|
#define PJ_TODO(x)
|
|
|
|
/* Defaults too low for WebRTC */
|
|
#define PJ_ICE_MAX_CAND 32
|
|
#define PJ_ICE_MAX_CHECKS (PJ_ICE_MAX_CAND * PJ_ICE_MAX_CAND)
|
|
|
|
/* Increase limits to allow more formats */
|
|
#define PJMEDIA_MAX_SDP_FMT 64
|
|
#define PJMEDIA_MAX_SDP_BANDW 4
|
|
#define PJMEDIA_MAX_SDP_ATTR (PJMEDIA_MAX_SDP_FMT*2 + 4)
|
|
#define PJMEDIA_MAX_SDP_MEDIA 16
|