More changes to make t.38 support work

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@8015 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Matthew Fredrickson
2006-01-12 17:14:58 +00:00
parent 0f5e4e476a
commit 1437a7255d
3 changed files with 19 additions and 2 deletions

View File

@@ -100,6 +100,9 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
#include "asterisk/pbx.h"
#include "asterisk/enum.h"
#include "asterisk/rtp.h"
#if defined(T38_SUPPORT)
#include "asterisk/udptl.h"
#endif
#include "asterisk/app.h"
#include "asterisk/lock.h"
#include "asterisk/utils.h"
@@ -2319,6 +2322,9 @@ int main(int argc, char *argv[])
exit(1);
}
ast_rtp_init();
#if defined(T38_SUPPORT)
ast_udptl_init();
#endif
if (ast_image_init()) {
printf(term_quit());
exit(1);