- some documentation & FAQ updates
This commit is contained in:
parent
59d3037b36
commit
62bd5bd06c
@ -1,3 +1,7 @@
|
|||||||
|
0.5.1
|
||||||
|
=====
|
||||||
|
29-Nov-2003: - some documentation & FAQ updates
|
||||||
|
|
||||||
0.5.0
|
0.5.0
|
||||||
=====
|
=====
|
||||||
26-Nov-2003: - released 0.5.0
|
26-Nov-2003: - released 0.5.0
|
||||||
@ -97,7 +101,7 @@
|
|||||||
logging can even completely be switched off...
|
logging can even completely be switched off...
|
||||||
1-Apr-2003: - should now be able to deal with an outbound interface
|
1-Apr-2003: - should now be able to deal with an outbound interface
|
||||||
that is "temporary" DOWN (dial up internet access)
|
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".
|
inbound UAs "408 Request Timeout".
|
||||||
- always log to syslog, also when running in foreground
|
- always log to syslog, also when running in foreground
|
||||||
- changed some WARNINGS into DEBUG statements
|
- changed some WARNINGS into DEBUG statements
|
||||||
|
|||||||
14
README
14
README
@ -20,16 +20,22 @@ IP addresses and port numbers.
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
REQUIREMENTS
|
PREREQUISITES
|
||||||
============
|
=============
|
||||||
see RELNOTES
|
- 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
|
HOW TO GET STARTED
|
||||||
==================
|
==================
|
||||||
|
- make sure libosip2 is installed
|
||||||
|
|
||||||
- ./configure
|
- ./configure
|
||||||
|
|
||||||
For Flifl: see doc/FLI4L_HOWTO.txt
|
For Flifl: see doc/FLI4L_HOWTO.txt
|
||||||
|
|
||||||
- make
|
- make
|
||||||
|
|||||||
9
RELNOTES
9
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:
|
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 <tries@gmx.net>
|
GnuPG: pub 1024D/87BCDC94 2000-03-19 Thomas Ries <tries@gmx.net>
|
||||||
|
|||||||
@ -35,7 +35,7 @@ dnl Release Version
|
|||||||
dnl
|
dnl
|
||||||
SPD_MAJOR_VERSION=0
|
SPD_MAJOR_VERSION=0
|
||||||
SPD_MINOR_VERSION=5
|
SPD_MINOR_VERSION=5
|
||||||
SPD_MICRO_VERSION=0
|
SPD_MICRO_VERSION=1
|
||||||
|
|
||||||
SPD_VERSION=$SPD_MAJOR_VERSION.$SPD_MINOR_VERSION.$SPD_MICRO_VERSION
|
SPD_VERSION=$SPD_MAJOR_VERSION.$SPD_MINOR_VERSION.$SPD_MICRO_VERSION
|
||||||
|
|
||||||
|
|||||||
8
doc/FAQ
8
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.
|
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:
|
yet unstructured:
|
||||||
Hi there
|
Hi there
|
||||||
|
|||||||
@ -42,7 +42,7 @@ static int debug_pattern=0;
|
|||||||
* 1 - INFOs, WARNINGs and ERRORs
|
* 1 - INFOs, WARNINGs and ERRORs
|
||||||
* 2 - WARNINGs and ERRORs
|
* 2 - WARNINGs and ERRORs
|
||||||
* 3 - only ERRORs
|
* 3 - only ERRORs
|
||||||
* 4 - absolutely nothing (be careful - you will have no way to
|
* 4 - absolutely nothing
|
||||||
*/
|
*/
|
||||||
static int silence_level=0;
|
static int silence_level=0;
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user