Module: kamailio Branch: master Commit: 7fd9a49863f0e173e9d84a0e99b31ba92f7007d1 URL: https://github.com/kamailio/kamailio/commit/7fd9a49863f0e173e9d84a0e99b31ba92f7007d1
Author: Daniel-Constantin Mierla <[email protected]> Committer: Daniel-Constantin Mierla <[email protected]> Date: 2025-12-08T14:48:33+01:00 htable: relocated export bind_htable at the end of the structure --- Modified: src/modules/htable/htable.c --- Diff: https://github.com/kamailio/kamailio/commit/7fd9a49863f0e173e9d84a0e99b31ba92f7007d1.diff Patch: https://github.com/kamailio/kamailio/commit/7fd9a49863f0e173e9d84a0e99b31ba92f7007d1.patch --- diff --git a/src/modules/htable/htable.c b/src/modules/htable/htable.c index d32da347124..a733d7c6262 100644 --- a/src/modules/htable/htable.c +++ b/src/modules/htable/htable.c @@ -165,14 +165,15 @@ static cmd_export_t cmds[] = { ANY_ROUTE}, {"sht_setxi", (cmd_function)w_ht_setxi, 4, fixup_ssii, fixup_free_ssii, ANY_ROUTE}, - - {"bind_htable", (cmd_function)bind_htable, 0, 0, 0, ANY_ROUTE}, {"sht_is_null", (cmd_function)w_ht_is_null, 2, fixup_spve_spve, fixup_free_spve_spve, ANY_ROUTE}, {"sht_inc", (cmd_function)w_ht_inc, 2, fixup_spve_spve, fixup_free_spve_spve, ANY_ROUTE}, {"sht_dec", (cmd_function)w_ht_dec, 2, fixup_spve_spve, fixup_free_spve_spve, ANY_ROUTE}, + + {"bind_htable", (cmd_function)bind_htable, 0, 0, 0, ANY_ROUTE}, + {0, 0, 0, 0, 0, 0} }; _______________________________________________ Kamailio - Development Mailing List -- [email protected] To unsubscribe send an email to [email protected] Important: keep the mailing list in the recipients, do not reply only to the sender!
