Looks like it, I don't see the data being added to the DB on port 3306, have to further debug it.
Thanks for the fix and for your time.

event_route[sipcapture:request] {

	xlog("HEP Request!\n");
	xlog("received sipcapture request from $si:$sp\n");
	xlog("HEP VERSION $hep(version) request from $si:$sp\n");
	xlog("HEP CHUNK Source IP $hep(0x002) request from $si:$sp\n");

	#Is it SIP ?
	if($hep(0x00b) == 1)
	{

		#Do parsing internal
		return 1;
	}
	else 
	{
		#If report lets proceed here with payload
		xlog("HEP CHUNK PAYLOAD $hep(0x00f) request from $si:$sp\n");
		return 0;
	}
}

Those log lines produce an "error" log, kind of misleading


You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub, or mute the thread.