Release 0.2.3
This commit is contained in:
parent
f1134e5042
commit
236455aa11
@ -1,5 +1,10 @@
|
||||
0.2.3
|
||||
=====
|
||||
- 10-Nov-2002: - released 0.2.3 (minor fixes)
|
||||
- 9-Nov-2002: - make install also installs a sample password file
|
||||
(/etc/siproxd_passwd.cfg)
|
||||
- 8-Nov-2002: - string manipulations & data structures: better error
|
||||
handling on some places.
|
||||
- 2-Nov-2002: - 'make install' install now a templace config file
|
||||
(/etc/siproxd.conf.example)
|
||||
- 24-Oct-2002: - small docu updates in README
|
||||
|
||||
24
README
24
README
@ -39,8 +39,6 @@ HOW TO GET STARTED
|
||||
|
||||
- make install
|
||||
|
||||
- copy doc/sipproxd.conf.example to /etc/siproxd.conf
|
||||
|
||||
- edit /etc/siproxd.conf according to your situation
|
||||
At least 'host_inbound' and 'host_outbound' *must* be adapted!
|
||||
'host_inbound' is the firewalls IP address of your private network,
|
||||
@ -48,10 +46,30 @@ HOW TO GET STARTED
|
||||
firewall. (If you have dynamic IP addresses, then you might want
|
||||
to use a hostname here and use a dynamic DNS service like [1])
|
||||
|
||||
- edit /etc/siproxd_passwd.cfg if you enable client authentication
|
||||
in siproxd.conf
|
||||
|
||||
- start siproxd (siproxd does *not* require root privilegdes)
|
||||
$ siproxd
|
||||
|
||||
|
||||
|
||||
PROBLEM REPORTING
|
||||
=================
|
||||
If you encounter problems/crashes and ask for support, please include
|
||||
as much information as possible. Very helpful is a debug log that
|
||||
has been recorded at the time of the misbehaviour.
|
||||
|
||||
The easiest way to do this:
|
||||
1) make sure siproxd is not started as daemon.
|
||||
-> 'daemonize = 0' in the config file.
|
||||
2) start siproxd:
|
||||
$ ./siproxd -d -1 2>debug.log
|
||||
3) reproduce the error
|
||||
4) include the debug.log in your error report.
|
||||
|
||||
|
||||
|
||||
WHAT SIPROXD DOES
|
||||
=================
|
||||
Siproxd's purpose is to act as an SIP proxy for softphones located
|
||||
@ -135,7 +153,6 @@ REFERENCES
|
||||
LIMITATIONS
|
||||
===========
|
||||
- currently, the SIP part only supports UDP
|
||||
- RTP proxy support is still experimantal (so as the rest of siproxd ;-)
|
||||
- very likely it does not follow the SIP spec (RFC3261) in all details
|
||||
- check the TODO file for more things that we-cannot-do-but-would-like-to
|
||||
|
||||
@ -160,6 +177,7 @@ Please feel free to contact the author to:
|
||||
|
||||
and visit the website at http://siproxd.sourceforge.net/
|
||||
|
||||
|
||||
There is a siproxd mailinglist available on sourceforge.
|
||||
|
||||
Thomas Ries (tries@gmx.net)
|
||||
|
||||
3
RELNOTES
3
RELNOTES
@ -28,6 +28,9 @@ Interoperability (tested with softphones):
|
||||
|
||||
-----
|
||||
md5sum for siproxd-0.2.3.tar.gz:
|
||||
md5sum for siproxd-0.2.3-1rh60.i386.rpm
|
||||
md5sum for siproxd-0.2.3-1rh72.i386.rpm
|
||||
md5sum for siproxd-0.2.3-1.src.rpm
|
||||
|
||||
GnuPG signature for siproxd-0.2.3.tar.gz archive:
|
||||
|
||||
|
||||
@ -19,7 +19,8 @@
|
||||
#
|
||||
|
||||
|
||||
EXTRA_DIST = siproxd.conf.example FAQ
|
||||
EXTRA_DIST = siproxd.conf.example mysiproxd_passwd.cfg FAQ
|
||||
|
||||
install-data-local:
|
||||
$(INSTALL_DATA) siproxd.conf.example /etc/
|
||||
$(INSTALL_DATA) siproxd.conf.example /etc/
|
||||
$(INSTALL_DATA) siproxd_passwd.cfg /etc/
|
||||
|
||||
10
doc/siproxd_passwd.cfg
Normal file
10
doc/siproxd_passwd.cfg
Normal file
@ -0,0 +1,10 @@
|
||||
######################################################################
|
||||
#
|
||||
# Per user password file for siproxd
|
||||
#
|
||||
# format is:
|
||||
# <username> <password>
|
||||
# username and password must not contains white spaces
|
||||
#
|
||||
######################################################################
|
||||
user password
|
||||
Loading…
x
Reference in New Issue
Block a user