[Asterisk-cvs] libpri pri_q931.h,1.18,1.19 q931.c,1.95,1.96

markster at lists.digium.com markster at lists.digium.com
Thu Nov 4 21:09:49 CST 2004


Update of /usr/cvsroot/libpri
In directory mongoose.digium.com:/tmp/cvs-serv11685

Modified Files:
	pri_q931.h q931.c 
Log Message:
Merge Paul's generic digits support (bug #2788)


Index: pri_q931.h
===================================================================
RCS file: /usr/cvsroot/libpri/pri_q931.h,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -d -r1.18 -r1.19
--- pri_q931.h	16 Jun 2004 15:33:58 -0000	1.18
+++ pri_q931.h	5 Nov 2004 02:12:02 -0000	1.19
@@ -208,6 +208,7 @@
 #define Q931_IE_INFO_REQUEST            0x32
 #define Q931_IE_SIGNAL					0x34
 #define Q931_IE_SWITCHHOOK				0x36
+#define Q931_IE_GENERIC_DIGITS			(0x37 | Q931_CODESET(6))
 #define Q931_IE_FEATURE_ACTIVATE		0x38
 #define Q931_IE_FEATURE_IND				0x39
 #define Q931_IE_ORIGINAL_CALLED_NUMBER 	0x73

Index: q931.c
===================================================================
RCS file: /usr/cvsroot/libpri/q931.c,v
retrieving revision 1.95
retrieving revision 1.96
diff -u -d -r1.95 -r1.96
--- q931.c	30 Oct 2004 20:22:04 -0000	1.95
+++ q931.c	5 Nov 2004 02:12:02 -0000	1.96
@@ -1448,6 +1448,168 @@
 	return 0;
 }
 
+
+static char *gdencoding2str(int encoding)
+{
+	static struct msgtype gdencoding[] = {
+		{ 0, "BCD even" },
+		{ 1, "BCD odd" },
+		{ 2, "IA5" },
+		{ 3, "Binary" },
+	};
+	return code2str(encoding, gdencoding, sizeof(gdencoding) / sizeof(gdencoding[0]));
+}
+
+static char *gdtype2str(int type)
+{
+	static struct msgtype gdtype[] = {
+		{  0, "Account Code" },
+		{  1, "Auth Code" },
+		{  2, "Customer ID" },
+		{  3, "Universal Access" },
+		{  4, "Info Digits" },
+		{  5, "Callid" },
+		{  6, "Opart" },
+		{  7, "TCN" },
+		{  9, "Adin" },
+	};
+	return code2str(type, gdtype, sizeof(gdtype) / sizeof(gdtype[0]));
+}
+
+static FUNC_DUMP(dump_generic_digits)
+{
+	int encoding;
+	int type;
+	int idx;
+	int value;
+	if (len < 3) {
+		pri_message("%c Generic Digits (len=%02d): Invalid length\n", prefix, len);
+		return;
+	}
+	encoding = (ie->data[0] >> 5) & 7;
+	type = ie->data[0] & 0x1F;
+	pri_message("%c Generic Digits (len=%02d): Encoding %s  Type %s\n", prefix, len, gdencoding2str(encoding), gdtype2str(type));
+	if (encoding == 3) {	/* Binary */
+		pri_message("%c                            Don't know how to handle binary encoding\n");
+		return;
+	}
+	if (len == 3)	/* No number information */
+		return;
+	pri_message("%c                            Digits: ");
+	value = 0;
+	for(idx = 3; idx < len; ++idx) {
+		switch(encoding) {
+		case 0:		/* BCD even */
+		case 1:		/* BCD odd */
+			pri_message("%d", (ie->data[idx-2] >> 4) & 0x0f);
+			value = value * 10 + ((ie->data[idx-2] >> 4) & 0x0f);
+			if(!encoding || (idx+1 < len)) {	/* Special handling for BCD odd */
+				pri_message("%d", ie->data[idx-2] & 0x0f);
+				value = value * 10 + (ie->data[idx-2] & 0x0f);
+			}
+			break;
+		case 2:		/* IA5 */
+			pri_message("%c", ie->data[idx-2]);
+			value = value * 10 + ie->data[idx-2] - '0';
+			break;
+		}
+	}
+	switch(type) {
+		case 4:		/* Info Digits */
+			pri_message(" - %s", lineinfo2str(value));
+			break;
+	}
+	pri_message("\n");
+}
+
+static FUNC_RECV(receive_generic_digits)
+{
+	int encoding;
+	int type;
+	int idx;
+	int value;
+	int num_idx;
+	char number[260];
+
+	if (len < 3) {
+		pri_error("Invalid length of Generic Digits IE\n");
+		return -1;
+	}
+	encoding = (ie->data[0] >> 5) & 7;
+	type = ie->data[0] & 0x1F;
+	if (encoding == 3) {	/* Binary */
+		pri_message("!! Unable to handle binary encoded Generic Digits IE\n");
+		return 0;
+	}
+	if (len == 3)	/* No number information */
+		return 0;
+	switch(type) {
+	/* Integer value handling */
+	case 4:		/* Info Digits */
+		value = 0;
+		for(idx = 3; idx < len; ++idx) {
+			switch(encoding) {
+			case 0:		/* BCD even */
+			case 1:		/* BCD odd */
+				value = value * 10 + ((ie->data[idx-2] >> 4) & 0x0f);
+				if(!encoding || (idx+1 < len))	/* Special handling for BCD odd */
+					value = value * 10 + (ie->data[idx-2] & 0x0f);
+				break;
+			case 2:		/* IA5 */
+				value = value * 10 + (ie->data[idx-2] - '0');
+				break;
+			}
+		}
+		break;
+	/* String value handling */
+	case 5:		/* Callid */
+		num_idx = 0;
+		for(idx = 3; (idx < len) && (num_idx < sizeof(number) - 4); ++idx) {
+			switch(encoding) {
+			case 0:		/* BCD even */
+			case 1:		/* BCD odd */
+				number[num_idx++] = '0' + (ie->data[idx-2] & 0x0f);
+				if(!encoding || (idx+1 < len))	/* Special handling for BCD odd */
+					number[num_idx++] = '0' + ((ie->data[idx-2] >> 4) & 0x0f);
+				break;
+			case 2:
+				number[num_idx++] = ie->data[idx-2];
+				break;
+			}
+		}
+		number[num_idx] = '\0';
+		break;
+	}
+	switch(type) {
+	case 4:		/* Info Digits */
+		call->ani2 = value;
+		break;
+#if 0
+	case 5:		/* Callid */
+		if (!call->callernum[0]) {
+			memcpy(call->callernum, number, sizeof(call->callernum)-1);
+			call->callerpres = 0;
+			call->callerplan = 0;
+		}
+		break;
+#endif
+	}
+	return 0;
+}
+
+static FUNC_SEND(transmit_generic_digits)
+{
+#if 0	/* XXX Is this IE possible for other switches? XXX */
+	if(pri->switchtype == PRI_SWITCH_NI1) {
+		ie->data[0] = 0x04;	/* BCD even, Info Digits */
+		ie->data[1] = 0x00;	/* POTS */
+		return 4;
+	}
+#endif
+	return 0;
+}
+
+
 struct ie ies[] = {
 	/* Codeset 0 - Common */
 	{ NATIONAL_CHANGE_STATUS, "Change Status" },
@@ -1502,8 +1664,9 @@
 	{ Q931_IE_UPDATE, "Update" },
 	{ Q931_SENDING_COMPLETE, "Sending Complete", dump_sending_complete, receive_sending_complete, transmit_sending_complete },
 	/* Codeset 6 - Network specific */
-	{ Q931_IE_FACILITY | Q931_CODESET(6), "Facility", dump_facility, receive_facility, transmit_facility },
 	{ Q931_IE_ORIGINATING_LINE_INFO, "Originating Line Information", dump_line_information, receive_line_information, transmit_line_information },
+	{ Q931_IE_FACILITY | Q931_CODESET(6), "Facility", dump_facility, receive_facility, transmit_facility },
+	{ Q931_IE_GENERIC_DIGITS, "Generic Digits", dump_generic_digits, receive_generic_digits, transmit_generic_digits },
 	/* Codeset 7 */
 };
 
@@ -2202,7 +2365,7 @@
 }
 
 static int setup_ies[] = { Q931_BEARER_CAPABILITY, Q931_CHANNEL_IDENT, Q931_IE_FACILITY, Q931_PROGRESS_INDICATOR, Q931_NETWORK_SPEC_FAC, Q931_DISPLAY,
-	Q931_CALLING_PARTY_NUMBER, Q931_CALLED_PARTY_NUMBER, Q931_REDIRECTING_NUMBER, Q931_SENDING_COMPLETE, Q931_IE_ORIGINATING_LINE_INFO, -1 };
+	Q931_CALLING_PARTY_NUMBER, Q931_CALLED_PARTY_NUMBER, Q931_REDIRECTING_NUMBER, Q931_SENDING_COMPLETE, Q931_IE_ORIGINATING_LINE_INFO, Q931_IE_GENERIC_DIGITS, -1 };
 
 static int gr303_setup_ies[] =  { Q931_BEARER_CAPABILITY, Q931_CHANNEL_IDENT, -1 };
 




More information about the svn-commits mailing list