From: Mark Spencer Date: Mon, 1 Sep 2003 19:24:23 +0000 (+0000) Subject: Finish provisioning placeholder X-Git-Tag: 0.5.0~37 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f12366ffc7e4b8bbd6ad8923ce055f788e6ce907;p=thirdparty%2Fasterisk.git Finish provisioning placeholder git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1459 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/channels/iax2-parser.c b/channels/iax2-parser.c index 816adcbafe..4d9244ba94 100755 --- a/channels/iax2-parser.c +++ b/channels/iax2-parser.c @@ -118,6 +118,7 @@ static struct iax2_ie { { IAX_IE_TRANSFERID, "TRANSFER ID", dump_int }, { IAX_IE_RDNIS, "REFERRING DNIS", dump_string }, { IAX_IE_PROVISIONING, "PROVISIONING" }, + { IAX_IE_AESPROVISIONING, "AES PROVISIONING" }, }; const char *iax_ie2str(int ie) diff --git a/channels/iax2.h b/channels/iax2.h index 0f4977d714..36b127bf14 100755 --- a/channels/iax2.h +++ b/channels/iax2.h @@ -102,6 +102,7 @@ #define IAX_IE_TRANSFERID 27 /* Transfer Request Identifier -- int */ #define IAX_IE_RDNIS 28 /* Referring DNIS -- string */ #define IAX_IE_PROVISIONING 29 /* Provisioning info */ +#define IAX_IE_AESPROVISIONING 30 /* AES Provisioning info */ #define IAX_AUTH_PLAINTEXT (1 << 0) #define IAX_AUTH_MD5 (1 << 1)