diff --git a/ChangeLog b/ChangeLog index bd239d1..97accc8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,10 @@ 0.5.9 ===== + 23-Oct-2004: - fix: route_processing.c - when adding my record-route header, + the 'lr' parameter was not dynamically allocated + (possible crash when trying to free is) + - up to 1000 characters per line in config file (was 120), + some typos corrected (by Tero Pelander) 13-Oct-2004: - utils.c: preparation for chroot() (consider syslog) 09-Oct-2004: - comp_osip.c: libosip2-2.0.9 compatibility (There SEEM to happen some API changes forward and backward: diff --git a/doc/sample_cfg_x-lite.txt b/doc/sample_cfg_x-lite.txt index d4617ab..7faa83b 100644 --- a/doc/sample_cfg_x-lite.txt +++ b/doc/sample_cfg_x-lite.txt @@ -88,7 +88,7 @@ System Settings Password: Domain/Realm: SIP Proxy: - Out Bound Porxy: + Out Bound Proxy: Use Out Bound Proxy: Always Send Internal IP: Default Register: Always diff --git a/doc/siproxd.conf.example b/doc/siproxd.conf.example index a03afb3..a20eb9e 100644 --- a/doc/siproxd.conf.example +++ b/doc/siproxd.conf.example @@ -99,7 +99,7 @@ rtp_proxy_enable = 1 # This should be a range that is not blocked by the firewall # rtp_port_low = 7070 -rtp_port_high = 7080 +rtp_port_high = 7079 ###################################################################### # Timeout for RTP streams diff --git a/src/readconf.c b/src/readconf.c index 87a314a..d586dd1 100644 --- a/src/readconf.c +++ b/src/readconf.c @@ -131,7 +131,7 @@ int read_config(char *name, int search) { * STS_FAILURE on error */ static int parse_config (FILE *configfile) { - char buff[128]; + char buff[1024]; char *ptr; int i; int k; diff --git a/src/sip_utils.c b/src/sip_utils.c index 7dab6a1..5fcdf60 100644 --- a/src/sip_utils.c +++ b/src/sip_utils.c @@ -380,7 +380,7 @@ mismatch: /* * check if a given request is addressed to local. I.e. it is addressed - * to the porxy itself (IP of my inbound or outbound interface, same port) + * to the proxy itself (IP of my inbound or outbound interface, same port) * * RETURNS * STS_TRUE if the request is addressed local