From 03e851531a63cfb57f2d3d674d6302dfa03cd288 Mon Sep 17 00:00:00 2001 From: markster Date: Tue, 9 Nov 2004 21:19:35 +0000 Subject: Make features programable (will require iaxy binary firmware 20 to be released soon) git-svn-id: http://svn.digium.com/svn/asterisk/trunk@4197 f38db490-d61c-443f-a65b-d21fe96a405b --- channels/iax2-provision.c | 4 ++++ channels/iax2-provision.h | 5 +++++ 2 files changed, 9 insertions(+) (limited to 'channels') diff --git a/channels/iax2-provision.c b/channels/iax2-provision.c index 7f7189af7..44000d59b 100755 --- a/channels/iax2-provision.c +++ b/channels/iax2-provision.c @@ -65,6 +65,10 @@ static struct iax_flag { { "secure", PROV_FLAG_SECURE }, { "heartbeat", PROV_FLAG_HEARTBEAT }, { "debug", PROV_FLAG_DEBUG }, + { "disablecid", PROV_FLAG_DIS_CALLERID }, + { "disablecw", PROV_FLAG_DIS_CALLWAIT }, + { "disablecidcw", PROV_FLAG_DIS_CIDCW }, + { "disable3way", PROV_FLAG_DIS_THREEWAY }, }; char *iax_provflags2str(char *buf, int buflen, unsigned int flags) diff --git a/channels/iax2-provision.h b/channels/iax2-provision.h index 3caaa5d31..efd775d63 100755 --- a/channels/iax2-provision.h +++ b/channels/iax2-provision.h @@ -36,6 +36,11 @@ #define PROV_FLAG_HEARTBEAT (1 << 2) #define PROV_FLAG_DEBUG (1 << 3) +#define PROV_FLAG_DIS_CALLERID (1 << 4) /* Caller-ID Disabled */ +#define PROV_FLAG_DIS_CALLWAIT (1 << 5) /* Caller-ID / Call Waiting Disable */ +#define PROV_FLAG_DIS_CIDCW (1 << 6) /* CID/CW Disabled */ +#define PROV_FLAG_DIS_THREEWAY (1 << 7) /* Three-way calling, transfer disabled */ + extern char *iax_provflags2str(char *buf, int buflen, unsigned int flags); extern int iax_provision_reload(void); extern int iax_provision_unload(void); -- cgit v1.2.3