True if the pdpcontext is not in state PDP-INACTIVE
| 266 | |
| 267 | // True if the pdpcontext is not in state PDP-INACTIVE |
| 268 | bool GmmInfo::isNSapiActive(unsigned nsapi) |
| 269 | { |
| 270 | assert(nsapi < sNumPdps); |
| 271 | return !(mPdps[nsapi] == 0 || mPdps[nsapi]->isPdpInactive()); |
| 272 | } |
| 273 | |
| 274 | // This status is sent back to the MS in messages to indicate what the Network thinks |
| 275 | // what PDPContexts are currently in use. |
no test coverage detected