diff --git a/ChangeLog b/ChangeLog index 2cfcf256..37ea073b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +06/25/2014 Oleg Moskalenko +Version 4.0.1.4 'Severard': + - c++11 compilation warnings fixed. + 06/13/2014 Oleg Moskalenko Version 4.0.1.3 'Severard': - Redis DB connection status fixed (Issue 129). diff --git a/README.turnserver b/README.turnserver index fbc0efe7..888a7e0b 100644 --- a/README.turnserver +++ b/README.turnserver @@ -425,7 +425,9 @@ Options with required values: definite log file name. The special names are "stdout" and "-" - they will force everything to the stdout. Also, "syslog" name will redirect everything into - the system log (syslog), as if the option "--syslog" was set. + the system log (syslog), as if the option "--syslog" was set. + In the runtime, the logfile can be reset with the SIGHUP signal + to the turnserver process. --alternate-server Option to set the "redirection" mode. The value of this option will be the address of the alternate server for UDP & TCP service in form of diff --git a/examples/etc/turnserver.conf b/examples/etc/turnserver.conf index 5cf7f7c1..f5dc5f8a 100644 --- a/examples/etc/turnserver.conf +++ b/examples/etc/turnserver.conf @@ -421,7 +421,9 @@ # With this option you can set the definite log file name. # The special names are "stdout" and "-" - they will force everything # to the stdout. Also, the "syslog" name will force everything to -# the system log (syslog). +# the system log (syslog). +# In the runtime, the logfile can be reset with the SIGHUP signal +# to the turnserver process. # #log-file=/var/tmp/turn.log diff --git a/man/man1/turnadmin.1 b/man/man1/turnadmin.1 index 029151f9..70b13659 100644 --- a/man/man1/turnadmin.1 +++ b/man/man1/turnadmin.1 @@ -1,5 +1,5 @@ .\" Text automatically generated by txt2man -.TH TURN 1 "29 May 2014" "" "" +.TH TURN 1 "25 June 2014" "" "" .SH GENERAL INFORMATION \fIturnadmin\fP is a TURN administration tool. This tool can be used to manage diff --git a/man/man1/turnserver.1 b/man/man1/turnserver.1 index 395b2dfc..a4546fa2 100644 --- a/man/man1/turnserver.1 +++ b/man/man1/turnserver.1 @@ -1,5 +1,5 @@ .\" Text automatically generated by txt2man -.TH TURN 1 "29 May 2014" "" "" +.TH TURN 1 "25 June 2014" "" "" .SH GENERAL INFORMATION The \fBTURN Server\fP project contains the source code of a TURN server and TURN client @@ -625,7 +625,9 @@ first that file will be used). With this option you can set the definite log file name. The special names are "stdout" and "\-" \- they will force everything to the stdout. Also, "syslog" name will redirect everything into -the system log (syslog), as if the option "\fB\-\-syslog\fP" was set. +the system log (syslog), as if the option "\fB\-\-syslog\fP" was set. +In the runtime, the logfile can be reset with the SIGHUP signal +to the \fIturnserver\fP process. .TP .B \fB\-\-alternate\-server\fP diff --git a/man/man1/turnutils.1 b/man/man1/turnutils.1 index 9601c90a..facf3c58 100644 --- a/man/man1/turnutils.1 +++ b/man/man1/turnutils.1 @@ -1,5 +1,5 @@ .\" Text automatically generated by txt2man -.TH TURN 1 "29 May 2014" "" "" +.TH TURN 1 "25 June 2014" "" "" .SH GENERAL INFORMATION A set of turnutils_* programs provides some utility functionality to be used diff --git a/rpm/build.settings.sh b/rpm/build.settings.sh index a2d19a54..85abba6d 100755 --- a/rpm/build.settings.sh +++ b/rpm/build.settings.sh @@ -2,7 +2,7 @@ # Common settings script. -TURNVERSION=4.0.1.3 +TURNVERSION=4.0.1.4 BUILDDIR=~/rpmbuild ARCH=`uname -p` TURNSERVER_SVN_URL=http://coturn.googlecode.com/svn diff --git a/rpm/turnserver.spec b/rpm/turnserver.spec index 5da21c4d..abb36815 100644 --- a/rpm/turnserver.spec +++ b/rpm/turnserver.spec @@ -1,5 +1,5 @@ Name: turnserver -Version: 4.0.1.3 +Version: 4.0.1.4 Release: 0%{dist} Summary: Coturn TURN Server @@ -289,6 +289,8 @@ fi %{_includedir}/turn/client/TurnMsgLib.h %changelog +* Wed Jun 25 2014 Oleg Moskalenko + - Sync to 4.0.1.4 * Fri Jun 13 2014 Oleg Moskalenko - Sync to 4.0.1.3 * Fri Jun 06 2014 Oleg Moskalenko diff --git a/src/ns_turn_defs.h b/src/ns_turn_defs.h index e025d140..636adde1 100644 --- a/src/ns_turn_defs.h +++ b/src/ns_turn_defs.h @@ -31,7 +31,7 @@ #ifndef __IOADEFS__ #define __IOADEFS__ -#define TURN_SERVER_VERSION "4.0.1.3" +#define TURN_SERVER_VERSION "4.0.1.4" #define TURN_SERVER_VERSION_NAME "Severard" #define TURN_SOFTWARE "Coturn-" TURN_SERVER_VERSION " '" TURN_SERVER_VERSION_NAME "'"