From 62bd5bd06cfb7055b4afc71168111ce4f393af42 Mon Sep 17 00:00:00 2001 From: Thomas Ries Date: Sat, 29 Nov 2003 15:15:45 +0000 Subject: [PATCH] - some documentation & FAQ updates --- ChangeLog | 8 ++++++-- README | 14 ++++++++++---- RELNOTES | 9 ++++++++- configure.in | 2 +- doc/FAQ | 8 ++++++++ src/log.c | 2 +- 6 files changed, 34 insertions(+), 9 deletions(-) diff --git a/ChangeLog b/ChangeLog index fd3e0be..8a8cd35 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +0.5.1 +===== + 29-Nov-2003: - some documentation & FAQ updates + 0.5.0 ===== 26-Nov-2003: - released 0.5.0 @@ -93,11 +97,11 @@ ===== 5-Apr-2003: - released 0.3.2 4-Apr-2003: - introduced config option 'silence_log' - this allows - to control how much logging is done to syslog - + to control how much logging is done to syslog - logging can even completely be switched off... 1-Apr-2003: - should now be able to deal with an outbound interface that is "temporary" DOWN (dial up internet access) - if outbounf IF is down, send back a response to + if outbound IF is down, send back a response to inbound UAs "408 Request Timeout". - always log to syslog, also when running in foreground - changed some WARNINGS into DEBUG statements diff --git a/README b/README index 39a9d8f..3a65b6a 100644 --- a/README +++ b/README @@ -20,16 +20,22 @@ IP addresses and port numbers. -REQUIREMENTS -============ -see RELNOTES +PREREQUISITES +============= +- OS of either: + * Linux (preferred kernel 2.2.x or 2.4.x) + * FreeBSD + * Solaris (porting is beeing worked on but you may try it) + +- libosip2 package (http://www.fsf.org/software/osip/) + HOW TO GET STARTED ================== +- make sure libosip2 is installed - ./configure - For Flifl: see doc/FLI4L_HOWTO.txt - make diff --git a/RELNOTES b/RELNOTES index 37a8841..e7c1489 100644 --- a/RELNOTES +++ b/RELNOTES @@ -86,9 +86,16 @@ Known bugs: ----- -md5sum for siproxd-0.5.0.tar.gz: +md5sum for siproxd-0.5.0.tar.gz: 506efb9c88d68944f63ab42130e15ae6 GnuPG signature for siproxd-0.5.0.tar.gz archive: +-----BEGIN PGP SIGNATURE----- +Version: GnuPG v1.2.1 (GNU/Linux) + +iD8DBQA/xPhdCfzBioe83JQRAp8CAKDFBUJEFiTraZc1xl8MJSHtqjevsACffF2N +yuUjpOq58gUC4XEQRsYspuk= +=YsPE +-----END PGP SIGNATURE----- GnuPG: pub 1024D/87BCDC94 2000-03-19 Thomas Ries diff --git a/configure.in b/configure.in index 93020bd..964b215 100644 --- a/configure.in +++ b/configure.in @@ -35,7 +35,7 @@ dnl Release Version dnl SPD_MAJOR_VERSION=0 SPD_MINOR_VERSION=5 -SPD_MICRO_VERSION=0 +SPD_MICRO_VERSION=1 SPD_VERSION=$SPD_MAJOR_VERSION.$SPD_MINOR_VERSION.$SPD_MICRO_VERSION diff --git a/doc/FAQ b/doc/FAQ index 7fbedf7..9248064 100644 --- a/doc/FAQ +++ b/doc/FAQ @@ -197,7 +197,15 @@ A: It has been observed that these SIP phone seems to be delicate there. the phone and make sure the 'Use random port' option is enabled. --------------------------------------------------------------------------- +Q: I use Linux (kernel 2.4.x) and use ipchains. However, siproxd + always complains "ERROR:IPCHAINS support not built in", why? +A: Siproxd IPCHAIN support works only with kernels 2.2.x. The + ipchains compatibility module for 2.4.x kernels lacks some features + that allow user space programs to control masquerading tunnels. + You must use the RTP relay or IPTABLES based masquerading. + +--------------------------------------------------------------------------- yet unstructured: Hi there diff --git a/src/log.c b/src/log.c index 8811f12..6457bdb 100644 --- a/src/log.c +++ b/src/log.c @@ -42,7 +42,7 @@ static int debug_pattern=0; * 1 - INFOs, WARNINGs and ERRORs * 2 - WARNINGs and ERRORs * 3 - only ERRORs - * 4 - absolutely nothing (be careful - you will have no way to + * 4 - absolutely nothing */ static int silence_level=0;