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)