diff options
author | adv <adv@uma.es> | 2018-11-13 06:06:57 +0000 |
---|---|---|
committer | adv <adv@uma.es> | 2018-11-13 06:06:57 +0000 |
commit | 8c10b3d45227737dad6326b1e3bb0b7c540329e4 (patch) | |
tree | e15cda09e04f45ef07ac4635f069230aa1aabe0e /client/shared/scripts | |
parent | e0cea763bb2186ea3c7a76adae259a0f68f58610 (diff) |
#851 cloneRemoteFromMaster define mcast client session as
port:MASTERIP:0:0
Diffstat (limited to 'client/shared/scripts')
-rwxr-xr-x | client/shared/scripts/cloneRemoteFromMaster | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/client/shared/scripts/cloneRemoteFromMaster b/client/shared/scripts/cloneRemoteFromMaster index 9aedefde..b78bd629 100755 --- a/client/shared/scripts/cloneRemoteFromMaster +++ b/client/shared/scripts/cloneRemoteFromMaster @@ -57,6 +57,10 @@ #@version 1.0.6 - Uso de la funcion ogExecuteAndLog #@author Antonio J. Doblas Viso. Universidad de Malaga. #@date 2012/02/12 +#@version 1.1.0.a - sesion multicast cliente puerto:master:0:0 (ticket #872) +#@author Antonio J. Doblas Viso +#@date 2018/09/11 +#*/ ## #*/ ## #test 1. cliente sin particiones. Detectado TODO: crear estrucutras de particiones @@ -106,7 +110,7 @@ PROTOCOL="$4" case "${PROTOCOL^^}" in MULTICAST) SESSIONMCASTSERVER=$5 - SESSIONMCASTCLIENT=`echo $5 | awk -F: '{print $1}'` + SESSIONMCASTCLIENT=`echo $5 | awk -F: '{print $1}'`:$MASTERIP:0:0 ;; UNICAST) SESSIONUCASTSERVER=$5 |