Hey there,
I saw something in the HoloRP Cms and i have a question about it.
this is on the top of client.php
and this is in flashvars section in client.php
Now my question: Is it possible to say, that the server should connect everytime with "ip : port" but always show in the client.php file the fake-informations from "ipb : port" ?
Best Regards
I saw something in the HoloRP Cms and i have a question about it.
Code:
<?php
$hosts = array(
'ip:port',
'ipb:port',
//'ipc:port',
//'ipd:portb',
//'ipe:port'
);
$wshosts = array(
'ip:sport',
'ipb:sport',
//'ipc:sport'
//'ipe:sport'
);
$host = explode(":", $hosts[array_rand($hosts)], 2);
$wshost = explode(":", $wshosts[array_rand($wshosts)], 2);
?>
Code:
"connection.info.host" : <?= $host[0]; ?>,
"connection.socket.host" : <?= $wshost[0]; ?>,
"connection.info.port" : <?= $host[1]; ?>,
"connection.socket.port" : <?= $wshost[1]; ?>,
and this is in flashvars section in client.php
Now my question: Is it possible to say, that the server should connect everytime with "ip : port" but always show in the client.php file the fake-informations from "ipb : port" ?
Best Regards