This does nothing if the IMSI is not found inthe table.
| 322 | |
| 323 | // This does nothing if the IMSI is not found inthe table. |
| 324 | void TMSITable::tmsiTabSetRejected(string imsi,int rejectCode) |
| 325 | { |
| 326 | char query[100]; |
| 327 | snprintf(query,100,"UPDATE TMSI_TABLE SET AUTH=0,REJECT_CODE=%d WHERE IMSI == '%s'",rejectCode,imsi.c_str()); |
| 328 | runQuery(query,1); |
| 329 | } |
| 330 | |
| 331 | struct TSqlString : public string { |
| 332 | char buf[100]; |
no outgoing calls
no test coverage detected