Skip to content

Commit

Permalink
Merge branch 'develop' of ssh://stash.voipmonitor.org:7999/VS/sniffer…
Browse files Browse the repository at this point in the history
… into develop
  • Loading branch information
rbucek committed Jul 16, 2015
2 parents 4e1cf86 + a2d6a59 commit 8d293c8
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 1 deletion.
17 changes: 17 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
11.9.1 16.07.2015
=================
- fix 11.9 active calls in GUI which did not reported all ringing calls (with 18X) until calls were picked up


11.9 14.07.2015
===============
- add sequential fraud alert [VG-557]
- fix issue with buffer configuration which can be too low and can cause MEMORY FULL deadlock.
- report MEMORY FULL via manager command to catch that state via GUI
- implement name_sensor configuration option which overrides ID when spooldir_by_sensorname is enabled
- fix crash when send call over HTTP is enabled and disabled
- fix prematurely end of call when 300 multiple choices received. Sniffer closed the call immediately without waiting for other SIP messages [VS-286]
- store also BYE to mysql sip history
- new option save_sip_history (more info in voipmonitor.conf) [VS-278]


11.8.1 04.07.2015
=================
- fix crash if SIP Content-Length is negative
Expand Down
17 changes: 17 additions & 0 deletions config/voipmonitor.conf
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,11 @@ sqlcallend = yes
# Sets cleandatabase_cdr and cleandatabase_register_state and cleandatabase_register_failed to the same values. Configuration first look at cleandatabase parameter then it looks for other cleandatabase_* parameters.
#cleandatabase = 0

## EXPERT OPTIONS ##

# creates alert partition in separate thread. Do not enable this unless you know what it does.
#partition_operations_in_thread = yes

########### END DATABAE CONFIGURATION #################


Expand Down Expand Up @@ -438,6 +443,10 @@ nocdr = no
# directory where all files (pcap|wav|graph) are stored
spooldir = /var/spool/voipmonitor

# enables writing pcap files to separate folders per sensor id or sensor name. Enable this feature only if you are not using database.
# spooldir_by_sensorname = yes
# name_sensor = sensor1

# pcap_dump_bufflength sets buffer (bytes) for every file (pcap, graph). It helps to prevent randowm write for each SIP / RTP packet.
# Optimal and default value are 8184 Bytes.
pcap_dump_bufflength = 8184
Expand Down Expand Up @@ -534,6 +543,14 @@ tar_rtp_level = 1
# save SIP packets to pcap file
savesip = yes

# save_sip_history stores SIP request / responses into the database (without body) which can be used to search database for calls with
# specific response / requests during dialog. By default even if this option is disabled sip responses are always stored and only BYE request.
# this option allows to enable storing all SIP requests and also all ressponses which have additional timestamp. You would need to enable
# this option only in case you need to search database / calls based on specific SIP REQUEST messages.

#save_sip_history = requests,responses
#save_sip_history = all

# save RTP packets to pcap file. savertp = yes automatically saves RTCP packets
# you can also save only RTP header without AUDIO: savertp = header
# if save RTP is aneblad it will also save UDPTL packets (used for T.38)
Expand Down
2 changes: 1 addition & 1 deletion voipmonitor.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#ifndef VOIPMONITOR_H
#define VOIPMONITOR_H

#define RTPSENSOR_VERSION "11.8.1"
#define RTPSENSOR_VERSION "11.9"
#define NAT

#define FORMAT_WAV 1
Expand Down

0 comments on commit 8d293c8

Please sign in to comment.