Oleg Moskalenko 9 anni fa
parent
commit
43b62d16f2

+ 4 - 0
ChangeLog

@@ -1,3 +1,7 @@
+08/27/2016 Oleg Moskalenko <[email protected]>
+Version 4.5.0.5 'dan Eider':
+	- Typos in the text fixed.
+	
 08/20/2016 Oleg Moskalenko <[email protected]>
 Version 4.5.0.4 'dan Eider':
 	- OpenSSL 1.1.0 support added.

+ 1 - 1
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]
   

+ 1 - 1
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 

+ 1 - 1
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 

+ 10 - 3
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] [\fIoptions\fP]
 
-$ \fIturnutils_peer\fP [\fB\-v\fP] [options]
+.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.

+ 1 - 1
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

+ 3 - 1
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 <[email protected]>
+  - Sync to 4.5.0.5
 * Sat Aug 20 2016 Oleg Moskalenko <[email protected]>
   - Sync to 4.5.0.4
 * Sun Oct 11 2015 Oleg Moskalenko <[email protected]>

+ 2 - 2
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");

+ 1 - 1
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 "'"
 

+ 1 - 1
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";