That was a behaviour due to a mistake, respectively the IF had the condition if function name pointer is not null and first character is \0 -- practically on empty string was trying to find the acc function with empty string name:

		/* import the acc stuff */
		if(acc_fct_s != 0 && acc_fct_s[0] == '\0') {
			fct = find_export(acc_fct_s, 2, REQUEST_ROUTE);

Obviously it was supposed to find the acc function when the name was not null and not empty string. The new version of the module fixed the mistake and the function name has to be set to emtpy string via modparam.

If that does not work, reopen.


Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you are subscribed to this thread.Message ID: <kamailio/kamailio/issues/3188/1213255701@github.com>