Hello,
I have started receiving default case in event handler of bearer. I think i switch all cases but it flows in default case for 2 times after receiving WIP_BEV_IP_DISCONNECTED case. My code is following.
switch (event)
{
case WIP_BEV_CONN_FAILED:
{
break;
}
case WIP_BEV_IP_CONNECTED:
{
break;
}
case WIP_BEV_IP_DISCONNECTED:
{
break;
}
case WIP_BEV_STOPPED:
{
break;
}
case WIP_BEV_LINK_STATUS:
case WIP_BEV_DRIVER:
break;
default:
{
break;
}
Is there anyelse wip_bearer_t type other than i supplied in switch statement?
Using FW R7.45, WIP 5.41.0
Thanks.
Thank you rudolfl,
That is what you said. i simply do right click and “Go to Declaretion” in developer studio. But it redirects me the wrong header file. That leads me into error. I now see the other event values 7 and 8 in the header files.
But these new event values are not mentioned on the documantation. This is an absent