mirror of
https://github.com/coturn/coturn.git
synced 2025-05-14 17:42:16 +08:00
REST API docs fixed
This commit is contained in:
parent
7ee0681fd4
commit
8695e7c4a9
@ -1,3 +1,7 @@
|
|||||||
|
2/18/2015 Oleg Moskalenko <mom040267@gmail.com>
|
||||||
|
Version 4.4.2.2 'Ardee West':
|
||||||
|
- REST API docs fixed;
|
||||||
|
|
||||||
2/3/2015 Oleg Moskalenko <mom040267@gmail.com>
|
2/3/2015 Oleg Moskalenko <mom040267@gmail.com>
|
||||||
Version 4.4.2.1 'Ardee West':
|
Version 4.4.2.1 'Ardee West':
|
||||||
- (HMAC-)SHA-512 and -384 algorithms added;
|
- (HMAC-)SHA-512 and -384 algorithms added;
|
||||||
|
@ -174,7 +174,7 @@ Flags:
|
|||||||
This option uses timestamp as part of combined username:
|
This option uses timestamp as part of combined username:
|
||||||
usercombo -> "timestamp:username",
|
usercombo -> "timestamp:username",
|
||||||
turn user -> usercombo,
|
turn user -> usercombo,
|
||||||
turn password -> base64(hmac(secret key, usercombo)).
|
turn password -> base64(hmac(input_buffer = usercombo, key = shared-secret)).
|
||||||
This allows TURN credentials to be accounted for a specific user id.
|
This allows TURN credentials to be accounted for a specific user id.
|
||||||
If you don't have a suitable id, the timestamp alone can be used.
|
If you don't have a suitable id, the timestamp alone can be used.
|
||||||
This option is just turns on secret-based authentication.
|
This option is just turns on secret-based authentication.
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
.\" Text automatically generated by txt2man
|
.\" Text automatically generated by txt2man
|
||||||
.TH TURN 1 "06 February 2015" "" ""
|
.TH TURN 1 "18 February 2015" "" ""
|
||||||
.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
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
.\" Text automatically generated by txt2man
|
.\" Text automatically generated by txt2man
|
||||||
.TH TURN 1 "06 February 2015" "" ""
|
.TH TURN 1 "18 February 2015" "" ""
|
||||||
.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
|
||||||
@ -256,7 +256,7 @@ the TURN REST API section below.
|
|||||||
This option uses timestamp as part of combined username:
|
This option uses timestamp as part of combined username:
|
||||||
usercombo \-> "timestamp:username",
|
usercombo \-> "timestamp:username",
|
||||||
turn user \-> usercombo,
|
turn user \-> usercombo,
|
||||||
turn password \-> \fBbase64\fP(hmac(secret key, usercombo)).
|
turn password \-> \fBbase64\fP(hmac(input_buffer = usercombo, key = shared\-secret)).
|
||||||
This allows TURN credentials to be accounted for a specific user id.
|
This allows TURN credentials to be accounted for a specific user id.
|
||||||
If you don't have a suitable id, the timestamp alone can be used.
|
If you don't have a suitable id, the timestamp alone can be used.
|
||||||
This option is just turns on secret\-based authentication.
|
This option is just turns on secret\-based authentication.
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
.\" Text automatically generated by txt2man
|
.\" Text automatically generated by txt2man
|
||||||
.TH TURN 1 "06 February 2015" "" ""
|
.TH TURN 1 "18 February 2015" "" ""
|
||||||
.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
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
# Common settings script.
|
# Common settings script.
|
||||||
|
|
||||||
TURNVERSION=4.4.2.1
|
TURNVERSION=4.4.2.2
|
||||||
BUILDDIR=~/rpmbuild
|
BUILDDIR=~/rpmbuild
|
||||||
ARCH=`uname -p`
|
ARCH=`uname -p`
|
||||||
TURNSERVER_SVN_URL=http://coturn.googlecode.com/svn
|
TURNSERVER_SVN_URL=http://coturn.googlecode.com/svn
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
Name: turnserver
|
Name: turnserver
|
||||||
Version: 4.4.2.1
|
Version: 4.4.2.2
|
||||||
Release: 0%{dist}
|
Release: 0%{dist}
|
||||||
Summary: Coturn TURN Server
|
Summary: Coturn TURN Server
|
||||||
|
|
||||||
@ -288,6 +288,8 @@ fi
|
|||||||
%{_includedir}/turn/client/TurnMsgLib.h
|
%{_includedir}/turn/client/TurnMsgLib.h
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Wed Feb 18 2015 Oleg Moskalenko <mom040267@gmail.com>
|
||||||
|
- Sync to 4.4.2.2
|
||||||
* Tue Feb 3 2015 Oleg Moskalenko <mom040267@gmail.com>
|
* Tue Feb 3 2015 Oleg Moskalenko <mom040267@gmail.com>
|
||||||
- Sync to 4.4.2.1
|
- Sync to 4.4.2.1
|
||||||
* Sun Feb 1 2015 Oleg Moskalenko <mom040267@gmail.com>
|
* Sun Feb 1 2015 Oleg Moskalenko <mom040267@gmail.com>
|
||||||
|
@ -31,7 +31,7 @@
|
|||||||
#ifndef __IOADEFS__
|
#ifndef __IOADEFS__
|
||||||
#define __IOADEFS__
|
#define __IOADEFS__
|
||||||
|
|
||||||
#define TURN_SERVER_VERSION "4.4.2.1"
|
#define TURN_SERVER_VERSION "4.4.2.2"
|
||||||
#define TURN_SERVER_VERSION_NAME "Ardee West"
|
#define TURN_SERVER_VERSION_NAME "Ardee West"
|
||||||
#define TURN_SOFTWARE "Coturn-" TURN_SERVER_VERSION " '" TURN_SERVER_VERSION_NAME "'"
|
#define TURN_SOFTWARE "Coturn-" TURN_SERVER_VERSION " '" TURN_SERVER_VERSION_NAME "'"
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user