This commit is contained in:
Daniil Gentili 2017-06-25 20:37:17 +02:00
parent 47f60e77b9
commit fd1850251c
2 changed files with 2 additions and 3 deletions

View File

@ -735,7 +735,7 @@ class MTProto extends \Volatile
public function getV()
{
return 44;
return 45;
}
public function get_self()

View File

@ -88,15 +88,14 @@ trait AuthKeyHandler
$this->calls[$params['id']] = ['status' => self::READY, 'key' => $key, 'admin' => true, 'user_id' => $params['participant_id'], 'InputPhoneCall' => ['id' => $params['id'], 'access_hash' => $params['access_hash'], '_' => 'inputPhoneCall'], 'in_seq_no_x' => 0, 'out_seq_no_x' => 1, 'layer' => $this->settings['tl_schema']['layer'], 'updated' => time(), 'incoming' => [], 'outgoing' => [], 'created' => time(), 'protocol' => $params['protocol'], 'callbacks' => $this->calls[$params['id']]['callbacks']];
$this->calls[$params['id']]['controller'] = new \danog\MadelineProto\VoIP($this->calls[$params['id']]['callbacks']['set_state'], $this->calls[$params['id']]['callbacks']['incoming'], $this->calls[$params['id']]['callbacks']['outgoing'], $this, $this->calls[$params['id']]['InputPhoneCall']);
var_dump('key');
$this->calls[$params['id']]['controller']->setEncryptionKey($key['auth_key'], true);
var_dump('network');
$this->calls[$params['id']]['controller']->setNetworkType($this->settings['calls']['network_type']);
var_dump('config');
$this->calls[$params['id']]['controller']->setConfig($this->config['call_receive_timeout_ms'] / 1000, $this->config['call_connect_timeout_ms'] / 1000, true, true, true, $this->settings['calls']['log_file_path'], $this->settings['calls']['stats_dump_file_path']);
var_dump('shared config');
$this->calls[$params['id']]['controller']->setSharedConfig($this->method_call('phone.getCallConfig', [], ['datacenter' => $this->datacenter->curdc]));
var_dump('endpoints');
var_dump(array_merge([$res['connection']], $res['alternative_connections']));
$this->calls[$params['id']]['controller']->setRemoteEndpoints(array_merge([$res['connection']], $res['alternative_connections']), $this->settings['calls']['allow_p2p']);
var_dump('start');
$this->calls[$params['id']]['controller']->start();