* destroy function */
| 551 | * destroy function |
| 552 | */ |
| 553 | void destroy(void) |
| 554 | { |
| 555 | LM_DBG("start\n"); |
| 556 | |
| 557 | if(rls_table) |
| 558 | { |
| 559 | if(rls_dbf.init && child_init(process_no)==0) |
| 560 | rlsubs_table_update(0, 0); |
| 561 | pres_destroy_shtable(rls_table, hash_size); |
| 562 | } |
| 563 | if(rls_db && rls_dbf.close) |
| 564 | rls_dbf.close(rls_db); |
| 565 | } |
| 566 | |
| 567 | int handle_expired_record(subs_t* s) |
| 568 | { |
nothing calls this directly
no test coverage detected