jingle/jingle.c
changeset 45 c007e112dd54
parent 44 4738d78edc05
child 46 f33c814d5b3a
equal deleted inserted replaced
44:4738d78edc05 45:c007e112dd54
   123   if (jingle_action_list[jn->action].handler == NULL) {
   123   if (jingle_action_list[jn->action].handler == NULL) {
   124     jingle_send_iq_error(message, "cancel", "feature-not-implemented", NULL);
   124     jingle_send_iq_error(message, "cancel", "feature-not-implemented", NULL);
   125     return LM_HANDLER_RESULT_REMOVE_MESSAGE;
   125     return LM_HANDLER_RESULT_REMOVE_MESSAGE;
   126   }
   126   }
   127 
   127 
   128   jingle_action_list[jn->action].handler(message, jn);
   128   jingle_action_list[jn->action].handler(jn);
   129 
   129 
   130   return LM_HANDLER_RESULT_REMOVE_MESSAGE;
   130   return LM_HANDLER_RESULT_REMOVE_MESSAGE;
   131 }
   131 }
   132 
   132 
   133 /**
   133 /**