diff --git a/ChangeLog b/ChangeLog index c220da98..55886751 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +08/27/2016 Oleg Moskalenko +Version 4.5.0.5 'dan Eider': + - Typos in the text fixed. + 08/20/2016 Oleg Moskalenko Version 4.5.0.4 'dan Eider': - OpenSSL 1.1.0 support added. diff --git a/README.turnutils b/README.turnutils index e267941d..19252c77 100644 --- a/README.turnutils +++ b/README.turnutils @@ -161,7 +161,7 @@ See the examples in the "examples/scripts" directory. turnutils_peer - a simple UDP-only echo backend server. - SYNOPSYS + SYNOPSIS $ turnutils_peer [-v] [options] diff --git a/man/man1/turnadmin.1 b/man/man1/turnadmin.1 index ecc1c8e4..cf06d39a 100644 --- a/man/man1/turnadmin.1 +++ b/man/man1/turnadmin.1 @@ -1,5 +1,5 @@ .\" Text automatically generated by txt2man -.TH TURN 1 "29 November 2015" "" "" +.TH TURN 1 "27 August 2016" "" "" .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 3620b549..145d9bd1 100644 --- a/man/man1/turnserver.1 +++ b/man/man1/turnserver.1 @@ -1,5 +1,5 @@ .\" Text automatically generated by txt2man -.TH TURN 1 "29 November 2015" "" "" +.TH TURN 1 "27 August 2016" "" "" .SH GENERAL INFORMATION The \fBTURN Server\fP project contains the source code of a TURN server and TURN client diff --git a/man/man1/turnutils.1 b/man/man1/turnutils.1 index 8e44dedb..06e4ccfa 100644 --- a/man/man1/turnutils.1 +++ b/man/man1/turnutils.1 @@ -1,5 +1,5 @@ .\" Text automatically generated by txt2man -.TH TURN 1 "29 November 2015" "" "" +.TH TURN 1 "27 August 2016" "" "" .SH GENERAL INFORMATION A set of turnutils_* programs provides some utility functionality to be used @@ -258,9 +258,16 @@ See the examples in the "examples/scripts" directory. \fB \fBturnutils_peer \fP\- a simple UDP\-only echo backend server. \fB -.SS SYNOPSYS +.SS SYNOPSIS +.nf +.fam C -$ \fIturnutils_peer\fP [\fB\-v\fP] [options] +$ \fIturnutils_peer\fP [\fB\-v\fP] [\fIoptions\fP] + +.fam T +.fi +.fam T +.fi .SS DESCRIPTION This application is used for the test purposes only, as a peer for the \fIturnutils_uclient\fP application. diff --git a/rpm/build.settings.sh b/rpm/build.settings.sh index b5c3b6c7..eefed756 100755 --- a/rpm/build.settings.sh +++ b/rpm/build.settings.sh @@ -2,7 +2,7 @@ # Common settings script. -TURNVERSION=4.5.0.4 +TURNVERSION=4.5.0.5 BUILDDIR=~/rpmbuild ARCH=`uname -p` TURNSERVER_GIT_URL=https://github.com/coturn/coturn.git diff --git a/rpm/turnserver.spec b/rpm/turnserver.spec index afd24ad5..a6f2fa36 100644 --- a/rpm/turnserver.spec +++ b/rpm/turnserver.spec @@ -1,5 +1,5 @@ Name: turnserver -Version: 4.5.0.4 +Version: 4.5.0.5 Release: 0%{dist} Summary: Coturn TURN Server @@ -290,6 +290,8 @@ fi %{_includedir}/turn/client/TurnMsgLib.h %changelog +* Sat Aug 27 2016 Oleg Moskalenko + - Sync to 4.5.0.5 * Sat Aug 20 2016 Oleg Moskalenko - Sync to 4.5.0.4 * Sun Oct 11 2015 Oleg Moskalenko diff --git a/src/apps/stunclient/stunclient.c b/src/apps/stunclient/stunclient.c index c54a4765..ff17ad5f 100644 --- a/src/apps/stunclient/stunclient.c +++ b/src/apps/stunclient/stunclient.c @@ -234,7 +234,7 @@ static int run_stunclient(const char* rip, int rport, int *port, int *rfc5780, i printf("The response is an error %d (%s)\n", err_code, reason.c_str()); } } else { - printf("The response is not a reponse message\n"); + printf("The response is not a response message\n"); } } catch(...) { printf("The response is not a well formed STUN message\n"); @@ -386,7 +386,7 @@ static int run_stunclient(const char* rip, int rport, int *port, int *rfc5780, i } } } else { - printf("The response is not a reponse message\n"); + printf("The response is not a response message\n"); } } else { printf("The response is not a STUN message\n"); diff --git a/src/ns_turn_defs.h b/src/ns_turn_defs.h index e5092395..7ad1d5b4 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.5.0.4" +#define TURN_SERVER_VERSION "4.5.0.5" #define TURN_SERVER_VERSION_NAME "dan Eider" #define TURN_SOFTWARE "Coturn-" TURN_SERVER_VERSION " '" TURN_SERVER_VERSION_NAME "'" diff --git a/src/server/ns_turn_server.c b/src/server/ns_turn_server.c index 1aa4f7a8..7e2c6f70 100644 --- a/src/server/ns_turn_server.c +++ b/src/server/ns_turn_server.c @@ -2610,7 +2610,7 @@ static int handle_turn_channel_bind(turn_turnserver *server, } else { if (!addr_eq_no_port(&peer_addr, &(tinfo->addr))) { *err_code = 500; - *reason = (const u08bits *)"Wrong permission info and peer addr conbination"; + *reason = (const u08bits *)"Wrong permission info and peer addr combination"; } else if (chn->port != addr_get_port(&peer_addr)) { *err_code = 500; *reason = (const u08bits *)"Wrong port number";