1
0
mirror of https://github.com/coturn/coturn.git synced 2025-10-23 20:11:17 +02:00

version bumped up and some spelling errors fixed

This commit is contained in:
Oleg Moskalenko 2017-12-11 23:24:54 -08:00
parent b324980c68
commit a921f0ccc4
7 changed files with 12 additions and 8 deletions

View File

@ -1,3 +1,7 @@
12/11/2017 Oleg Moskalenko <mom040267@gmail.com>
Version 4.5.0.8 'dan Eider':
- Spelling fixes.
12/10/2017 Oleg Moskalenko <mom040267@gmail.com> 12/10/2017 Oleg Moskalenko <mom040267@gmail.com>
Version 4.5.0.7 'dan Eider': Version 4.5.0.7 'dan Eider':
- Misc security improvements. - Misc security improvements.

View File

@ -314,7 +314,7 @@ $ turnutils_oauth [options]
turnutils_oauth utilitiy provides help in OAuth access_token encryption and/or turnutils_oauth utilitiy provides help in OAuth access_token encryption and/or
decryption with AEAD (Atuthenticated Encryption with Associated Data). It helps decryption with AEAD (Atuthenticated Encryption with Associated Data). It helps
for an Auth Server in access_token creation, and also for debuging purposes it for an Auth Server in access_token creation, and also for debugging purposes it
helps the access_token validation and decryption. This utility inputs all the helps the access_token validation and decryption. This utility inputs all the
keys and lifetimes and any related information that are needed for encryption keys and lifetimes and any related information that are needed for encryption
or decryption of an access_token. It outputs a JSON with all OAuth PoP or decryption of an access_token. It outputs a JSON with all OAuth PoP

View File

@ -1,5 +1,5 @@
.\" Text automatically generated by txt2man .\" Text automatically generated by txt2man
.TH TURN 1 "29 September 2017" "" "" .TH TURN 1 "11 December 2017" "" ""
.SH GENERAL INFORMATION .SH GENERAL INFORMATION
\fIturnadmin\fP is a TURN administration tool. This tool can be used to manage \fIturnadmin\fP is a TURN administration tool. This tool can be used to manage

View File

@ -1,5 +1,5 @@
.\" Text automatically generated by txt2man .\" Text automatically generated by txt2man
.TH TURN 1 "29 September 2017" "" "" .TH TURN 1 "11 December 2017" "" ""
.SH GENERAL INFORMATION .SH GENERAL INFORMATION
The \fBTURN Server\fP project contains the source code of a TURN server and TURN client The \fBTURN Server\fP project contains the source code of a TURN server and TURN client

View File

@ -1,5 +1,5 @@
.\" Text automatically generated by txt2man .\" Text automatically generated by txt2man
.TH TURN 1 "29 September 2017" "" "" .TH TURN 1 "11 December 2017" "" ""
.SH GENERAL INFORMATION .SH GENERAL INFORMATION
A set of turnutils_* programs provides some utility functionality to be used A set of turnutils_* programs provides some utility functionality to be used
@ -482,7 +482,7 @@ $ \fIturnutils_oauth\fP [\fIoptions\fP]
\fIturnutils_oauth\fP utilitiy provides help in OAuth access_token encryption and/or \fIturnutils_oauth\fP utilitiy provides help in OAuth access_token encryption and/or
decryption with AEAD (Atuthenticated Encryption with Associated Data). It helps decryption with AEAD (Atuthenticated Encryption with Associated Data). It helps
for an Auth Server in access_token creation, and also for debuging purposes it for an Auth Server in access_token creation, and also for debugging purposes it
helps the access_token validation and decryption. This utility inputs all the helps the access_token validation and decryption. This utility inputs all the
keys and lifetimes and any related information that are needed for encryption keys and lifetimes and any related information that are needed for encryption
or decryption of an access_token. It outputs a JSON with all OAuth PoP or decryption of an access_token. It outputs a JSON with all OAuth PoP

View File

@ -246,7 +246,7 @@ static int stunclient_receive(int sockfd, ioa_addr *local_addr, ioa_addr *reflex
printf("The response is an error %d (%s)\n", err_code, reason.c_str()); printf("The response is an error %d (%s)\n", err_code, reason.c_str());
} }
} else { } else {
printf("The response is not a reponse message\n"); printf("The response is not a response message\n");
} }
} catch(...) { } catch(...) {
turn::StunMsgRequest msg(buf.buf, sizeof(buf.buf), (size_t)buf.len, true); turn::StunMsgRequest msg(buf.buf, sizeof(buf.buf), (size_t)buf.len, true);
@ -474,7 +474,7 @@ static int stunclient_receive(stun_buffer *buf, int sockfd, ioa_addr *local_addr
} else if (stun_is_request(buf)) { } else if (stun_is_request(buf)) {
printf("Received a request (maybe a successful hairpinning)\n"); printf("Received a request (maybe a successful hairpinning)\n");
} else { } else {
printf("The response is not a reponse message\n"); printf("The response is not a response message\n");
ret=1; ret=1;
} }
} else { } else {

View File

@ -31,7 +31,7 @@
#ifndef __IOADEFS__ #ifndef __IOADEFS__
#define __IOADEFS__ #define __IOADEFS__
#define TURN_SERVER_VERSION "4.5.0.7" #define TURN_SERVER_VERSION "4.5.0.8"
#define TURN_SERVER_VERSION_NAME "dan Eider" #define TURN_SERVER_VERSION_NAME "dan Eider"
#define TURN_SOFTWARE "Coturn-" TURN_SERVER_VERSION " '" TURN_SERVER_VERSION_NAME "'" #define TURN_SOFTWARE "Coturn-" TURN_SERVER_VERSION " '" TURN_SERVER_VERSION_NAME "'"