Skip to content

Commit

Permalink
typos fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
mom040267 committed Aug 27, 2016
1 parent 20b9b48 commit 43b62d1
Show file tree
Hide file tree
Showing 10 changed files with 25 additions and 12 deletions.
4 changes: 4 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion README.turnutils
Original file line number Diff line number Diff line change
Expand Up @@ -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]

Expand Down
2 changes: 1 addition & 1 deletion man/man1/turnadmin.1
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion man/man1/turnserver.1
Original file line number Diff line number Diff line change
@@ -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
Expand Down
13 changes: 10 additions & 3 deletions man/man1/turnutils.1
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion rpm/build.settings.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 3 additions & 1 deletion rpm/turnserver.spec
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Name: turnserver
Version: 4.5.0.4
Version: 4.5.0.5
Release: 0%{dist}
Summary: Coturn TURN Server

Expand Down Expand Up @@ -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]>
Expand Down
4 changes: 2 additions & 2 deletions src/apps/stunclient/stunclient.c
Original file line number Diff line number Diff line change
Expand Up @@ -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");
Expand Down Expand Up @@ -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");
Expand Down
2 changes: 1 addition & 1 deletion src/ns_turn_defs.h
Original file line number Diff line number Diff line change
Expand Up @@ -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 "'"

Expand Down
2 changes: 1 addition & 1 deletion src/server/ns_turn_server.c
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down

0 comments on commit 43b62d1

Please sign in to comment.