Hello,
Hola List,
the Voip Calls Feature is not working correctly with H.323 (SIP is working).
The Calls are not reassembled correctly. For every packet a new line is
displayed.
Attached is a one line patch that seems to fix the h323 call graph for me.
Best regards,
Cvetan
-- Cvetan Ivanov System Administrator SpectrumNet Jsc. +35929657613 Office
Index: gtk/voip_calls.c
===================================================================
--- gtk/voip_calls.c (revision 18189)
+++ gtk/voip_calls.c (working copy)
@@ -1698,7 +1698,7 @@
tmp_listinfo=list->data;
if (tmp_listinfo->protocol == VOIP_H323){
tmp_h323info = tmp_listinfo->prot_info;
- if ( (memcmp(&tmp_h323info->guid, &guid_allzero, GUID_LEN) != 0) && (memcmp(&tmp_h323info->guid, &pi->guid,GUID_LEN)==0) ){
+ if ( (memcmp(tmp_h323info->guid, &guid_allzero, GUID_LEN) != 0) && (memcmp(tmp_h323info->guid, &pi->guid,GUID_LEN)==0) ){
strinfo = (voip_calls_info_t*)(list->data);
break;
}
Powered by MHonArc 2.6.10