[Bugfix][API-1547] Change RIL FWK broadcast addr to 127.255.255.255
Only Configure: No
Affected branch: LYNQ_PUBLIC master
Affected module: RIL
Is it affected on both ZXIC and MTK: only MTK
Self-test: Yes
Doc Update: No
Change-Id: I1538fed1ad6fccdee69b607423b97bb6598dfc5a
diff --git a/common_src/lib/liblynq-call/lynq_module_socket.cpp b/common_src/lib/liblynq-call/lynq_module_socket.cpp
index 1539a91..b33dd68 100755
--- a/common_src/lib/liblynq-call/lynq_module_socket.cpp
+++ b/common_src/lib/liblynq-call/lynq_module_socket.cpp
@@ -20,7 +20,11 @@
#define LYNQ_SERVICE_PORT 8088
#define LYNQ_ADDRESS "127.0.0.1"
#define LYNQ_URC_SERVICE_PORT 8086
+#ifdef GSW_RIL_CFG
+#define LYNQ_URC_ADDRESS "127.255.255.255" /*hong.liu change broadcast addr on 2024.2.18*/
+#else
#define LYNQ_URC_ADDRESS "0.0.0.0"
+#endif
#define LYNQ_REQUEST_PARAM_BUF 8192
#define LYNQ_REC_BUF 8192