pjproject: Upgrade to 2.8.

This change brings in PJSIP 2.8, removes all the patches
that were merged upstream, and makes a minor change to
support a breaking change that was done.

ASTERISK-28059

Change-Id: I5097772b11b0f95c3c1f52df6400158666f0a189
This commit is contained in:
Joshua Colp
2018-09-17 16:38:19 +00:00
parent 3d9deb35f0
commit ce9a980be6
21 changed files with 79 additions and 809 deletions

View File

@@ -114,9 +114,13 @@ static int system_apply(const struct ast_sorcery *system_sorcery, void *obj)
#endif
if (system->compactheaders) {
#ifdef HAVE_PJSIP_ENDPOINT_COMPACT_FORM
pjsip_cfg()->endpt.use_compact_form = PJ_TRUE;
#else
extern pj_bool_t pjsip_use_compact_form;
pjsip_use_compact_form = PJ_TRUE;
#endif
}
sip_threadpool_options.initial_size = system->threadpool.initial_size;