aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2003-09-01 19:24:23 +0000
committermarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2003-09-01 19:24:23 +0000
commit09234e825c5559cca9da891caf333e0c3077a969 (patch)
treed2ffe6e3dd55fcc06816003b80e6a61e21d03091
parentc42987a34b06c19711a76ea4675ab45abc89ea0a (diff)
Finish provisioning placeholder
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@1459 f38db490-d61c-443f-a65b-d21fe96a405b
-rwxr-xr-xchannels/iax2-parser.c1
-rwxr-xr-xchannels/iax2.h1
2 files changed, 2 insertions, 0 deletions
diff --git a/channels/iax2-parser.c b/channels/iax2-parser.c
index 816adcbaf..4d9244ba9 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 0f4977d71..36b127bf1 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)