Extend interface in netutils-wrapper

Interface name provided by AOSP in
system/netd/netutils_wrappers/NetUtilsWrapper-1.0.cpp only includes
"oem" and "rmnet". MediaTek adds "ccmni" and uses it for a long time.
MediaTek uses "ccmni" to receive network packets from TCP/IP stack
and send them to server when applications (such as Internet, IMS, MMS,
etc.) want to access network. Because our vendor implementation uses
"ccmni", we hope AOSP can add this interface.

Bug: 123044993
Test: phone call, send message, access Internet
Change-Id: I5556fb2058fca37718ddb6058effab2693caef8f
diff --git a/netutils_wrappers/NetUtilsWrapper-1.0.cpp b/netutils_wrappers/NetUtilsWrapper-1.0.cpp
index 94c08ff..cdc454e 100644
--- a/netutils_wrappers/NetUtilsWrapper-1.0.cpp
+++ b/netutils_wrappers/NetUtilsWrapper-1.0.cpp
@@ -34,7 +34,8 @@
 
 #define OEM_IFACE "[^ ]*oem[0-9]+"
 #define RMNET_IFACE "(r_)?rmnet_(data)?[0-9]+"
-#define VENDOR_IFACE "(" OEM_IFACE "|" RMNET_IFACE ")"
+#define CCMNI_IFACE "cc(3)?mni[0-9]+"
+#define VENDOR_IFACE "(" OEM_IFACE "|" RMNET_IFACE "|" CCMNI_IFACE ")"
 #define VENDOR_CHAIN "(oem_.*|nm_.*|qcom_.*)"
 
 // List of net utils wrapped by this program