mirror of
https://github.com/coturn/coturn.git
synced 2025-05-14 09:36:49 +08:00
turn-bis new release adjustments (dual allocation)
This commit is contained in:
parent
2368f98f3c
commit
9483dec4de
@ -1,5 +1,6 @@
|
||||
4/6/2015 Oleg Moskalenko <mom040267@gmail.com>
|
||||
Version 4.4.4.3 'Ardee West':
|
||||
4/9/2015 Oleg Moskalenko <mom040267@gmail.com>
|
||||
Version 4.4.5.1 'Ardee West':
|
||||
- dual allocation adjusted according to the new TURN-bis draft;
|
||||
- C++ fixes;
|
||||
- cosmetic fixes;
|
||||
|
||||
|
@ -2,7 +2,7 @@
|
||||
|
||||
# Common settings script.
|
||||
|
||||
TURNVERSION=4.4.4.3
|
||||
TURNVERSION=4.4.5.1
|
||||
BUILDDIR=~/rpmbuild
|
||||
ARCH=`uname -p`
|
||||
TURNSERVER_SVN_URL=http://coturn.googlecode.com/svn
|
||||
|
@ -1,5 +1,5 @@
|
||||
Name: turnserver
|
||||
Version: 4.4.4.3
|
||||
Version: 4.4.5.1
|
||||
Release: 0%{dist}
|
||||
Summary: Coturn TURN Server
|
||||
|
||||
@ -289,8 +289,8 @@ fi
|
||||
%{_includedir}/turn/client/TurnMsgLib.h
|
||||
|
||||
%changelog
|
||||
* Mon Apr 06 2015 Oleg Moskalenko <mom040267@gmail.com>
|
||||
- Sync to 4.4.4.3
|
||||
* Thu Apr 09 2015 Oleg Moskalenko <mom040267@gmail.com>
|
||||
- Sync to 4.4.5.1
|
||||
* Tue Mar 31 2015 Oleg Moskalenko <mom040267@gmail.com>
|
||||
- Sync to 4.4.4.2
|
||||
* Sun Mar 15 2015 Oleg Moskalenko <mom040267@gmail.com>
|
||||
|
@ -668,7 +668,7 @@ static int clnet_allocate(int verbose,
|
||||
field[1]=0;
|
||||
field[2]=0;
|
||||
field[3]=0;
|
||||
stun_attr_add(&request_message, STUN_ATTRIBUTE_ADDITIONAL_ADDRESS_FAMILY, (const char*) field, 4);
|
||||
stun_attr_add(&request_message, STUN_ATTRIBUTE_REQUESTED_ADDRESS_FAMILY, (const char*) field, 4);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1247,7 +1247,7 @@ static int refresh_channel(app_ur_session* elem, u16bits method, uint32_t lt)
|
||||
field[1]=0;
|
||||
field[2]=0;
|
||||
field[3]=0;
|
||||
stun_attr_add(&message, STUN_ATTRIBUTE_ADDITIONAL_ADDRESS_FAMILY, (const char*) field, 4);
|
||||
stun_attr_add(&message, STUN_ATTRIBUTE_REQUESTED_ADDRESS_FAMILY, (const char*) field, 4);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -31,7 +31,7 @@
|
||||
#ifndef __IOADEFS__
|
||||
#define __IOADEFS__
|
||||
|
||||
#define TURN_SERVER_VERSION "4.4.4.3"
|
||||
#define TURN_SERVER_VERSION "4.4.5.1"
|
||||
#define TURN_SERVER_VERSION_NAME "Ardee West"
|
||||
#define TURN_SOFTWARE "Coturn-" TURN_SERVER_VERSION " '" TURN_SERVER_VERSION_NAME "'"
|
||||
|
||||
|
@ -1519,8 +1519,8 @@ static int handle_turn_refresh(turn_turnserver *server,
|
||||
}
|
||||
}
|
||||
break;
|
||||
case STUN_ATTRIBUTE_REQUESTED_ADDRESS_FAMILY: /* <<== ??? */
|
||||
case STUN_ATTRIBUTE_ADDITIONAL_ADDRESS_FAMILY: {
|
||||
case STUN_ATTRIBUTE_ADDITIONAL_ADDRESS_FAMILY: /* deprecated, for backward compatibility with older versions of TURN-bis */
|
||||
case STUN_ATTRIBUTE_REQUESTED_ADDRESS_FAMILY: {
|
||||
int af_req = stun_get_requested_address_family(sar);
|
||||
{
|
||||
int is_err = 0;
|
||||
|
Loading…
x
Reference in New Issue
Block a user