summaryrefslogtreecommitdiff
path: root/ipacm/src/IPACM_Iface.cpp
diff options
context:
space:
mode:
authorSkylar Chang <chiaweic@codeaurora.org>2014-11-03 13:35:11 -0800
committerSkylar Chang <chiaweic@codeaurora.org>2014-11-25 13:06:18 -0800
commit2b094f5fc18ea0dae25fcb1fd25aa609ac3d7164 (patch)
treee7ec1b99f5cf461b52e54d6028f758f1e6d9bf04 /ipacm/src/IPACM_Iface.cpp
parent14f34c6a56deb12fd7585b7915bddacc08e9f79b (diff)
downloadipacfg-mgr-2b094f5fc18ea0dae25fcb1fd25aa609ac3d7164.tar.gz
IPACM: add MCC/SCC switch support in ipacm
1. Change the exiting routing rules to use different endpoint on switching to MCC and vice versa. 2. Modify default routing rules in wlan and wan interfaces. 3. Modify wan/wlan client routing rules in wan/wlan interfaces. Change-Id: I81211c3752fcb63f6dfbaed3f4303c83632e8012
Diffstat (limited to 'ipacm/src/IPACM_Iface.cpp')
-rw-r--r--ipacm/src/IPACM_Iface.cpp7
1 files changed, 5 insertions, 2 deletions
diff --git a/ipacm/src/IPACM_Iface.cpp b/ipacm/src/IPACM_Iface.cpp
index 2494e99..729acf2 100644
--- a/ipacm/src/IPACM_Iface.cpp
+++ b/ipacm/src/IPACM_Iface.cpp
@@ -553,8 +553,11 @@ int IPACM_Iface::query_iface_property(void)
{
for (cnt = 0; cnt < tx_prop->num_tx_props; cnt++)
{
- IPACMDBG_H("Tx(%d):attrib-mask:0x%x, ip-type: %d, dst_pipe: %d, header: %s\n",
- cnt, tx_prop->tx[cnt].attrib.attrib_mask, tx_prop->tx[cnt].ip, tx_prop->tx[cnt].dst_pipe, tx_prop->tx[cnt].hdr_name);
+ IPACMDBG_H("Tx(%d):attrib-mask:0x%x, ip-type: %d, dst_pipe: %d, alt_dst_pipe: %d, header: %s\n",
+ cnt, tx_prop->tx[cnt].attrib.attrib_mask,
+ tx_prop->tx[cnt].ip, tx_prop->tx[cnt].dst_pipe,
+ tx_prop->tx[cnt].alt_dst_pipe,
+ tx_prop->tx[cnt].hdr_name);
}
}