You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
kamailio/modules/ims_charging/ro_fixup.c

20 lines
366 B

/*
* File: ro_fixup.c
* Author: Jason Penton
*
* Created on 06 April 2011, 9:52 PM
*/
#include "ro_fixup.h"
#include "../../mod_fix.h"
int ro_send_ccr_fixup(void** param, int param_no) {
if (strlen((char*) *param) <= 0) {
LM_ERR("empty parameter %d not allowed\n", param_no);
return -1;
}
return fixup_var_int_12(param, 1);
}