comparison src/g23m-aci/aci/cmh_ccs.c @ 166:772c754cb3c9

src/g23m-aci/aci: progress toward compilation
author Mychaela Falconia <falcon@freecalypso.org>
date Tue, 11 Oct 2016 03:43:18 +0000
parents 53929b40109c
children
comparison
equal deleted inserted replaced
165:b0e6b861deba 166:772c754cb3c9
1077 #endif /* FF_FAX */ 1077 #endif /* FF_FAX */
1078 } 1078 }
1079 } 1079 }
1080 #endif /* FAX_AND_DATA */ 1080 #endif /* FAX_AND_DATA */
1081 1081
1082 /* 1082 /*
1083 * 3GPP standard 27007 1083 * 3GPP standard 27007
1084 * (+CVHU) 1084 * (+CVHU)
1085 *
1086 * FreeCalypso note: +CVHU support was not present in the TCS211 version
1087 * of ACI, but it appears in the version we got from the LoCosto source.
1088 * The following stanza is a new addition with this LoCosto version,
1089 * and it was broken for our sans-PSI configuration: the reference to
1090 * to psiShrdPrm only works when PSI is there, and it is a compilation
1091 * failure otherwise. The conditional on FF_PSI and the #else version
1092 * have been added by Space Falcon; the correctness of the latter is
1093 * not yet known.
1085 */ 1094 */
1095 #ifdef FF_PSI
1086 if( ccShrdPrm.cvhu EQ CVHU_DropDTR_ATH_IGNORED OR 1096 if( ccShrdPrm.cvhu EQ CVHU_DropDTR_ATH_IGNORED OR
1087 ((psiShrdPrm.dtr_clearcall EQ TRUE) AND 1097 ((psiShrdPrm.dtr_clearcall EQ TRUE) AND
1088 (ccShrdPrm.cvhu EQ CVHU_DropDTR_IGNORED)) ) 1098 (ccShrdPrm.cvhu EQ CVHU_DropDTR_IGNORED)) )
1089 { 1099 {
1090 psiShrdPrm.dtr_clearcall = FALSE; 1100 psiShrdPrm.dtr_clearcall = FALSE;
1091 return (AT_CMPL); 1101 return (AT_CMPL);
1092 } 1102 }
1103 #else
1104 if( ccShrdPrm.cvhu EQ CVHU_DropDTR_ATH_IGNORED )
1105 return (AT_CMPL);
1106 #endif
1107
1093 /* 1108 /*
1094 *------------------------------------------------------------------- 1109 *-------------------------------------------------------------------
1095 * check for a call with CCBS possible 1110 * check for a call with CCBS possible
1096 *------------------------------------------------------------------- 1111 *-------------------------------------------------------------------
1097 */ 1112 */