Merge branch 'issue93' which fix issue #93
ModuleEchoLink: If an incoming connect have a different IP address than the one registered in the Echolink directory server, the station list is now refreshed immediately instead of just rejecting the connection and wait for the next periodic refresh.
This commit is contained in:
commit
c29e7a2ef0
|
|
@ -71,6 +71,11 @@
|
|||
of the user who started the process rather than using the home directory
|
||||
of the target user.
|
||||
|
||||
* ModuleEchoLink: If an incoming connect have a different IP address than the
|
||||
one registered in the Echolink directory server, the station list is now
|
||||
refreshed immediately instead of just rejecting the connection and wait for
|
||||
the next periodic refresh.
|
||||
|
||||
|
||||
|
||||
1.4.0 -- 02 aug 2014
|
||||
|
|
|
|||
|
|
@ -982,6 +982,7 @@ void ModuleEchoLink::onIncomingConnection(const IpAddress& ip,
|
|||
<< " since the IP address registered in the directory server "
|
||||
<< "(" << station->ip() << ") is not the same as the remote IP "
|
||||
<< "address (" << ip << ") of the incoming connection\n";
|
||||
getDirectoryList();
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@ LIBASYNC=1.3.99.10
|
|||
SVXLINK=1.4.99.15
|
||||
MODULE_HELP=1.0.0
|
||||
MODULE_PARROT=1.1.0.99.0
|
||||
MODULE_ECHOLINK=1.3.0.99.0
|
||||
MODULE_ECHOLINK=1.3.0.99.1
|
||||
MODULE_TCL=1.0.1
|
||||
MODULE_PROPAGATION_MONITOR=1.0.1
|
||||
MODULE_TCL_VOICE_MAIL=1.0.0
|
||||
|
|
|
|||
Loading…
Reference in New Issue