2017-04-05 03:46:16 +02:00
|
|
|
/*
|
|
|
|
Copyright 2016-2017 Daniil Gentili
|
|
|
|
(https://daniil.it)
|
|
|
|
This file is part of php-libtgvoip.
|
|
|
|
php-libtgvoip is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
|
|
|
|
The PWRTelegram API is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
See the GNU Affero General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License along with php-libtgvoip.
|
|
|
|
If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2017-07-01 15:12:52 +02:00
|
|
|
#include "main.h"
|
2017-07-01 19:40:28 +02:00
|
|
|
#include <string.h>
|
|
|
|
#include <wchar.h>
|
|
|
|
#include <map>
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
#include "libtgvoip/VoIPServerConfig.h"
|
|
|
|
|
2017-07-04 15:50:02 +02:00
|
|
|
#include "audio/AudioInputModule.h"
|
|
|
|
#include "audio/AudioOutputModule.h"
|
2017-06-22 20:38:20 +02:00
|
|
|
|
2017-06-11 18:13:25 +02:00
|
|
|
using namespace tgvoip;
|
2017-06-22 14:48:52 +02:00
|
|
|
using namespace tgvoip::audio;
|
2017-07-05 23:24:07 +02:00
|
|
|
using namespace std;
|
2017-04-05 03:46:16 +02:00
|
|
|
|
2017-07-01 15:12:52 +02:00
|
|
|
void VoIP::__construct(Php::Parameters ¶ms)
|
|
|
|
{
|
2017-07-04 03:04:22 +02:00
|
|
|
PHPthis = (Php::Object)this;
|
|
|
|
|
2017-07-05 23:24:07 +02:00
|
|
|
madeline = params[0];
|
|
|
|
current_call = params[1];
|
2017-07-01 19:40:28 +02:00
|
|
|
|
|
|
|
inst = new VoIPController();
|
2017-07-04 03:04:22 +02:00
|
|
|
|
2017-07-01 15:12:52 +02:00
|
|
|
inst->implData = static_cast<void *>(this);
|
|
|
|
inst->SetStateCallback([](tgvoip::VoIPController *controller, int state) {
|
2017-07-04 03:04:22 +02:00
|
|
|
static_cast<VoIP *>(controller->implData)->updateConnectionState(state);
|
2017-07-01 15:12:52 +02:00
|
|
|
});
|
|
|
|
}
|
2017-04-05 03:46:16 +02:00
|
|
|
|
2017-07-01 15:12:52 +02:00
|
|
|
void VoIP::start()
|
|
|
|
{
|
|
|
|
inst->Start();
|
|
|
|
}
|
2017-04-05 03:46:16 +02:00
|
|
|
|
2017-07-01 15:12:52 +02:00
|
|
|
void VoIP::connect()
|
|
|
|
{
|
|
|
|
inst->Connect();
|
|
|
|
}
|
|
|
|
void VoIP::setEncryptionKey(Php::Parameters ¶ms)
|
|
|
|
{
|
|
|
|
char *key = (char *)malloc(256);
|
|
|
|
memcpy(key, params[0], 256);
|
|
|
|
inst->SetEncryptionKey(key, (bool)params[1]);
|
|
|
|
free(key);
|
|
|
|
}
|
2017-04-05 03:46:16 +02:00
|
|
|
|
2017-07-01 15:12:52 +02:00
|
|
|
void VoIP::setRemoteEndpoints(Php::Parameters ¶ms)
|
|
|
|
{
|
|
|
|
std::vector<Endpoint> eps;
|
2017-07-04 03:04:22 +02:00
|
|
|
for (int i = 0; i < params[0].size(); i++)
|
2017-07-01 15:12:52 +02:00
|
|
|
{
|
2017-07-05 23:24:07 +02:00
|
|
|
string ip = params[0][i]["ip"];
|
|
|
|
string ipv6 = params[0][i]["ipv6"];
|
|
|
|
string peer_tag = params[0][i]["peer_tag"];
|
2017-04-05 03:46:16 +02:00
|
|
|
|
2017-07-01 15:12:52 +02:00
|
|
|
tgvoip::IPv4Address v4addr(ip);
|
|
|
|
tgvoip::IPv6Address v6addr("::0");
|
2017-07-04 03:04:22 +02:00
|
|
|
unsigned char *pTag = (unsigned char*) malloc(16);
|
2017-04-05 03:46:16 +02:00
|
|
|
|
2017-07-01 15:12:52 +02:00
|
|
|
if (ipv6 != "")
|
|
|
|
{
|
|
|
|
v6addr = IPv6Address(ipv6);
|
2017-04-05 03:46:16 +02:00
|
|
|
}
|
2017-06-11 18:13:25 +02:00
|
|
|
|
2017-07-01 15:12:52 +02:00
|
|
|
if (peer_tag != "")
|
|
|
|
{
|
|
|
|
memcpy(pTag, peer_tag.c_str(), 16);
|
2017-06-11 18:13:25 +02:00
|
|
|
}
|
2017-04-05 03:46:16 +02:00
|
|
|
|
2017-07-01 15:12:52 +02:00
|
|
|
eps.push_back(Endpoint(params[0][i]["id"], (int32_t)params[0][i]["port"], v4addr, v6addr, EP_TYPE_UDP_RELAY, pTag));
|
2017-07-04 03:04:22 +02:00
|
|
|
free(pTag);
|
2017-04-05 03:46:16 +02:00
|
|
|
}
|
2017-07-01 15:12:52 +02:00
|
|
|
inst->SetRemoteEndpoints(eps, params[1]);
|
|
|
|
}
|
2017-04-05 03:46:16 +02:00
|
|
|
|
2017-07-01 15:12:52 +02:00
|
|
|
void VoIP::release()
|
|
|
|
{
|
|
|
|
delete inst;
|
|
|
|
}
|
2017-04-05 03:46:16 +02:00
|
|
|
|
2017-07-05 23:24:07 +02:00
|
|
|
void VoIP::__destruct()
|
|
|
|
{
|
|
|
|
this->release();
|
|
|
|
}
|
|
|
|
|
2017-07-01 15:12:52 +02:00
|
|
|
Php::Value VoIP::writeFrames(Php::Parameters ¶ms)
|
|
|
|
{
|
2017-07-04 15:50:02 +02:00
|
|
|
AudioInputModule *in = (AudioInputModule *)(intptr_t)inst;
|
2017-07-05 23:24:07 +02:00
|
|
|
unsigned char* data = (unsigned char*) malloc(960*2);
|
|
|
|
memcpy(data, params[0], 960*2);
|
|
|
|
bool res = in->writeFrames(data);
|
|
|
|
free(data);
|
|
|
|
return res;
|
2017-07-01 15:12:52 +02:00
|
|
|
}
|
2017-04-05 03:46:16 +02:00
|
|
|
|
2017-07-01 15:12:52 +02:00
|
|
|
Php::Value VoIP::readFrames()
|
|
|
|
{
|
2017-07-05 23:24:07 +02:00
|
|
|
AudioOutputModule *out = (AudioOutputModule *)(intptr_t) inst;
|
2017-07-01 15:12:52 +02:00
|
|
|
return out->readFrames();
|
|
|
|
}
|
2017-04-05 03:46:16 +02:00
|
|
|
|
2017-07-01 15:12:52 +02:00
|
|
|
Php::Value VoIP::getDebugString()
|
|
|
|
{
|
|
|
|
char buf[10240];
|
|
|
|
inst->GetDebugString(buf, 10240);
|
|
|
|
return buf;
|
|
|
|
}
|
|
|
|
|
|
|
|
void VoIP::setNetworkType(Php::Parameters ¶ms)
|
|
|
|
{
|
|
|
|
inst->SetNetworkType(params[0]);
|
|
|
|
}
|
2017-04-05 03:46:16 +02:00
|
|
|
|
2017-07-01 15:12:52 +02:00
|
|
|
void VoIP::setMicMute(Php::Parameters ¶ms)
|
|
|
|
{
|
|
|
|
inst->SetMicMute(params[0]);
|
|
|
|
}
|
|
|
|
// jdouble recvTimeout, jdouble initTimeout, jint dataSavingMode, jboolean enableAEC, jboolean enableNS, jboolean enableAGC, jstring logFilePath
|
|
|
|
void VoIP::setConfig(Php::Parameters ¶ms)
|
|
|
|
{
|
|
|
|
voip_config_t cfg;
|
|
|
|
cfg.recv_timeout = params[0];
|
|
|
|
cfg.init_timeout = params[1];
|
|
|
|
cfg.data_saving = params[2];
|
|
|
|
cfg.enableAEC = params[3];
|
|
|
|
cfg.enableNS = params[4];
|
|
|
|
cfg.enableAGC = params[5];
|
|
|
|
if (params.size() == 7)
|
|
|
|
{
|
|
|
|
strncpy(cfg.logFilePath, params[6], sizeof(cfg.logFilePath));
|
|
|
|
cfg.logFilePath[sizeof(cfg.logFilePath) - 1] = 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
memset(cfg.logFilePath, 0, sizeof(cfg.logFilePath));
|
2017-04-05 03:46:16 +02:00
|
|
|
}
|
|
|
|
|
2017-07-01 15:12:52 +02:00
|
|
|
if (params.size() == 8)
|
|
|
|
{
|
|
|
|
strncpy(cfg.statsDumpFilePath, params[7], sizeof(cfg.statsDumpFilePath));
|
|
|
|
cfg.statsDumpFilePath[sizeof(cfg.statsDumpFilePath) - 1] = 0;
|
2017-04-05 03:46:16 +02:00
|
|
|
}
|
2017-07-01 15:12:52 +02:00
|
|
|
else
|
|
|
|
{
|
|
|
|
memset(cfg.statsDumpFilePath, 0, sizeof(cfg.statsDumpFilePath));
|
2017-04-05 03:46:16 +02:00
|
|
|
}
|
2017-07-01 15:12:52 +02:00
|
|
|
inst->SetConfig(&cfg);
|
|
|
|
}
|
2017-07-05 23:24:07 +02:00
|
|
|
// int protocol, string address, uint16_t port, string username, string password
|
2017-07-03 16:58:30 +02:00
|
|
|
void VoIP::setProxy(Php::Parameters ¶ms)
|
|
|
|
{
|
|
|
|
inst->SetProxy(params[0], params[1], (int32_t) params[2], params[3], params[4]);
|
|
|
|
}
|
2017-07-01 15:12:52 +02:00
|
|
|
void VoIP::debugCtl(Php::Parameters ¶ms)
|
|
|
|
{
|
|
|
|
inst->DebugCtl(params[0], params[1]);
|
|
|
|
}
|
|
|
|
|
|
|
|
Php::Value VoIP::getVersion()
|
|
|
|
{
|
|
|
|
return VoIPController::GetVersion();
|
|
|
|
}
|
|
|
|
|
|
|
|
Php::Value VoIP::getPreferredRelayID()
|
|
|
|
{
|
|
|
|
return inst->GetPreferredRelayID();
|
|
|
|
}
|
|
|
|
|
|
|
|
Php::Value VoIP::getLastError()
|
|
|
|
{
|
|
|
|
return inst->GetLastError();
|
|
|
|
}
|
|
|
|
|
|
|
|
Php::Value VoIP::getStats()
|
|
|
|
{
|
|
|
|
voip_stats_t _stats;
|
|
|
|
inst->GetStats(&_stats);
|
|
|
|
Php::Array stats;
|
|
|
|
stats["bytesSentWifi"] = (int64_t)_stats.bytesSentWifi;
|
|
|
|
stats["bytesSentMobile"] = (int64_t)_stats.bytesSentMobile;
|
|
|
|
stats["bytesRecvdWifi"] = (int64_t)_stats.bytesRecvdWifi;
|
|
|
|
stats["bytesRecvdMobile"] = (int64_t)_stats.bytesRecvdMobile;
|
|
|
|
return stats;
|
|
|
|
}
|
2017-06-17 17:24:34 +02:00
|
|
|
|
2017-07-01 15:12:52 +02:00
|
|
|
void VoIP::setSharedConfig(Php::Parameters ¶ms)
|
|
|
|
{
|
|
|
|
ServerConfig::GetSharedInstance()->Update(params[0]);
|
|
|
|
}
|
|
|
|
|
|
|
|
Php::Value VoIP::getDebugLog()
|
|
|
|
{
|
|
|
|
return inst->GetDebugLog();
|
|
|
|
}
|
2017-04-05 03:46:16 +02:00
|
|
|
|
2017-07-04 03:04:22 +02:00
|
|
|
void VoIP::updateConnectionState(int state)
|
2017-07-01 15:12:52 +02:00
|
|
|
{
|
2017-07-04 03:04:22 +02:00
|
|
|
PHPthis.call("setState", state);
|
2017-07-01 19:40:28 +02:00
|
|
|
//setStateMethod(state);
|
|
|
|
}
|
|
|
|
|
|
|
|
void VoIP::startInput()
|
|
|
|
{
|
2017-07-04 03:04:22 +02:00
|
|
|
PHPthis.call("startInput");
|
2017-07-01 19:40:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void VoIP::startOutput()
|
|
|
|
{
|
2017-07-04 03:04:22 +02:00
|
|
|
PHPthis.call("startOutput");
|
2017-07-01 19:40:28 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void VoIP::stopInput()
|
|
|
|
{
|
2017-07-04 03:04:22 +02:00
|
|
|
PHPthis.call("stopInput");
|
2017-07-01 19:40:28 +02:00
|
|
|
}
|
|
|
|
void VoIP::stopOutput()
|
|
|
|
{
|
2017-07-04 03:04:22 +02:00
|
|
|
PHPthis.call("startInput");
|
2017-07-01 19:40:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void VoIP::configureAudioInput(uint32_t sampleRate, uint32_t bitsPerSample, uint32_t channels) {
|
2017-07-03 16:58:30 +02:00
|
|
|
inputSampleRate = sampleRate;
|
|
|
|
inputBitsPerSample = bitsPerSample;
|
|
|
|
inputChannels = channels;
|
|
|
|
inputSamplePeriod = 1/sampleRate*1000000;
|
|
|
|
inputWritePeriod = 1/sampleRate*960*1000000;
|
|
|
|
configuredInput = true;
|
2017-07-01 19:40:28 +02:00
|
|
|
}
|
|
|
|
void VoIP::configureAudioOutput(uint32_t sampleRate, uint32_t bitsPerSample, uint32_t channels) {
|
2017-07-03 16:58:30 +02:00
|
|
|
outputSampleRate = sampleRate;
|
|
|
|
outputBitsPerSample = bitsPerSample;
|
|
|
|
outputChannels = channels;
|
|
|
|
outputSamplePeriod = 1/sampleRate;
|
|
|
|
outputWritePeriod = 1/sampleRate*960*1000000;
|
|
|
|
configuredOutput = true;
|
2017-07-01 19:40:28 +02:00
|
|
|
}
|
|
|
|
float VoIP::getOutputLevel() {
|
2017-07-04 03:04:22 +02:00
|
|
|
return (double)PHPthis.call("getOutputLevel");
|
2017-07-01 15:12:52 +02:00
|
|
|
}
|
2017-04-05 03:46:16 +02:00
|
|
|
|
2017-07-03 16:58:30 +02:00
|
|
|
Php::Value VoIP::getCallConfig() {
|
|
|
|
Php::Value result;
|
|
|
|
if (configuredInput) {
|
|
|
|
result["input"]["sampleRate"] = inputSampleRate;
|
|
|
|
result["input"]["bitsPerSample"] = inputBitsPerSample;
|
|
|
|
result["input"]["channels"] = inputChannels;
|
|
|
|
result["input"]["samplePeriod"] = inputSamplePeriod;
|
|
|
|
result["input"]["writePeriod"] = inputWritePeriod;
|
|
|
|
}
|
|
|
|
if (configuredOutput) {
|
|
|
|
result["output"]["sampleRate"] = outputSampleRate;
|
|
|
|
result["output"]["bitsPerSample"] = outputBitsPerSample;
|
|
|
|
result["output"]["channels"] = outputChannels;
|
|
|
|
result["output"]["samplePeriod"] = outputSamplePeriod;
|
|
|
|
result["output"]["writePeriod"] = outputWritePeriod;
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
2017-04-05 03:46:16 +02:00
|
|
|
extern "C" {
|
|
|
|
|
2017-07-01 15:12:52 +02:00
|
|
|
/**
|
2017-04-05 03:46:16 +02:00
|
|
|
* Function that is called by PHP right after the PHP process
|
|
|
|
* has started, and that returns an address of an internal PHP
|
|
|
|
* strucure with all the details and features of your extension
|
|
|
|
*
|
|
|
|
* @return void* a pointer to an address that is understood by PHP
|
|
|
|
*/
|
2017-07-01 15:12:52 +02:00
|
|
|
PHPCPP_EXPORT void *get_module()
|
|
|
|
{
|
|
|
|
// static(!) Php::Extension object that should stay in memory
|
|
|
|
// for the entire duration of the process (that's why it's static)
|
|
|
|
static Php::Extension extension("php-libtgvoip", "1.0");
|
|
|
|
|
|
|
|
// description of the class so that PHP knows which methods are accessible
|
|
|
|
Php::Class<VoIP> voip("VoIP");
|
2017-07-01 19:40:28 +02:00
|
|
|
|
2017-07-05 23:24:07 +02:00
|
|
|
/*
|
2017-07-01 19:40:28 +02:00
|
|
|
voip.method("setState", {
|
|
|
|
Php::ByVal("state", Php::Type::Numeric),
|
|
|
|
});
|
|
|
|
|
|
|
|
voip.method("startOutput");
|
|
|
|
voip.method("stopOutput");
|
|
|
|
voip.method("stopInput");
|
|
|
|
voip.method("getOutputLevel");
|
2017-07-05 23:24:07 +02:00
|
|
|
*/
|
2017-07-01 19:40:28 +02:00
|
|
|
|
2017-07-03 16:58:30 +02:00
|
|
|
voip.method<&VoIP::getCallConfig>("getCallConfig");
|
2017-07-05 23:24:07 +02:00
|
|
|
voip.method<&VoIP::__destruct>("__destruct", Php::Public | Php::Final);
|
2017-07-01 19:40:28 +02:00
|
|
|
voip.method<&VoIP::__construct>("__construct", Php::Public | Php::Final, {
|
|
|
|
Php::ByRef("madelineProto", Php::Type::Object), Php::ByVal("currentCall", Php::Type::Numeric),
|
|
|
|
});
|
|
|
|
voip.method<&VoIP::setEncryptionKey>("setEncryptionKey", Php::Public | Php::Final, {
|
|
|
|
Php::ByVal("key", Php::Type::String), Php::ByVal("isOutgoing", Php::Type::Bool),
|
|
|
|
});
|
|
|
|
voip.method<&VoIP::setNetworkType>("setNetworkType", Php::Public | Php::Final, {
|
|
|
|
Php::ByVal("type", Php::Type::Numeric),
|
|
|
|
});
|
|
|
|
voip.method<&VoIP::setMicMute>("setMicMute", Php::Public | Php::Final, {
|
|
|
|
Php::ByVal("type", Php::Type::Bool),
|
|
|
|
});
|
|
|
|
voip.method<&VoIP::debugCtl>("debugCtl", Php::Public | Php::Final, {
|
|
|
|
Php::ByVal("request", Php::Type::Numeric), Php::ByVal("param", Php::Type::Numeric),
|
|
|
|
});
|
|
|
|
voip.method<&VoIP::setConfig>("setConfig", Php::Public | Php::Final, {
|
|
|
|
// jdouble recvTimeout, jdouble initTimeout, jint dataSavingMode, jboolean enableAEC, jboolean enableNS, jboolean enableAGC, jstring logFilePath
|
|
|
|
Php::ByVal("recvTimeout", Php::Type::Float), Php::ByVal("initTimeout", Php::Type::Float), Php::ByVal("dataSavingMode", Php::Type::Bool), Php::ByVal("enableAEC", Php::Type::Bool), Php::ByVal("enableNS", Php::Type::Bool), Php::ByVal("enableAGC", Php::Type::Bool), Php::ByVal("logFilePath", Php::Type::String, false), Php::ByVal("statsDumpFilePath", Php::Type::String, false),
|
|
|
|
});
|
2017-07-03 16:58:30 +02:00
|
|
|
voip.method<&VoIP::setProxy>("setProxy", Php::Public | Php::Final, {
|
2017-07-05 23:24:07 +02:00
|
|
|
// int protocol, string address, uint16_t port, string username, string password
|
2017-07-03 16:58:30 +02:00
|
|
|
Php::ByVal("protocol", Php::Type::Numeric), Php::ByVal("address", Php::Type::String), Php::ByVal("port", Php::Type::Numeric), Php::ByVal("username", Php::Type::String), Php::ByVal("password", Php::Type::String),
|
|
|
|
});
|
2017-07-01 19:40:28 +02:00
|
|
|
voip.method<&VoIP::setSharedConfig>("setSharedConfig", Php::Public | Php::Final, {Php::ByVal("config", Php::Type::Array)});
|
|
|
|
voip.method<&VoIP::setRemoteEndpoints>("setRemoteEndpoints", Php::Public | Php::Final, {Php::ByVal("endpoints", Php::Type::Array), Php::ByVal("allowP2P", Php::Type::Bool)});
|
|
|
|
voip.method<&VoIP::getDebugLog>("getDebugLog", Php::Public | Php::Final);
|
|
|
|
voip.method<&VoIP::getLastError>("getLastError", Php::Public | Php::Final);
|
|
|
|
voip.method<&VoIP::getPreferredRelayID>("getPreferredRelayID", Php::Public | Php::Final);
|
|
|
|
voip.method<&VoIP::getVersion>("getVersion", Php::Public | Php::Final);
|
|
|
|
voip.method<&VoIP::getDebugString>("getDebugString", Php::Public | Php::Final);
|
|
|
|
voip.method<&VoIP::getStats>("getStats", Php::Public | Php::Final);
|
|
|
|
voip.method<&VoIP::release>("release", Php::Public | Php::Final);
|
|
|
|
voip.method<&VoIP::start>("start", Php::Public | Php::Final);
|
|
|
|
voip.method<&VoIP::connect>("connect", Php::Public | Php::Final);
|
|
|
|
|
|
|
|
voip.method<&VoIP::readFrames>("readFrames", Php::Public | Php::Final);
|
|
|
|
voip.method<&VoIP::writeFrames>("writeFrames", Php::Public | Php::Final, {Php::ByVal("frames", Php::Type::String)});
|
2017-07-01 15:12:52 +02:00
|
|
|
|
2017-07-03 16:58:30 +02:00
|
|
|
voip.constant("STATE_WAIT_INIT", STATE_WAIT_INIT);
|
|
|
|
voip.constant("STATE_WAIT_INIT_ACK", STATE_WAIT_INIT_ACK);
|
|
|
|
voip.constant("STATE_ESTABLISHED", STATE_ESTABLISHED);
|
|
|
|
voip.constant("STATE_FAILED", STATE_FAILED);
|
|
|
|
voip.constant("STATE_RECONNECTING", STATE_RECONNECTING);
|
|
|
|
|
|
|
|
voip.constant("TGVOIP_ERROR_UNKNOWN", TGVOIP_ERROR_UNKNOWN);
|
|
|
|
voip.constant("TGVOIP_ERROR_INCOMPATIBLE", TGVOIP_ERROR_INCOMPATIBLE);
|
|
|
|
voip.constant("TGVOIP_ERROR_TIMEOUT", TGVOIP_ERROR_TIMEOUT);
|
|
|
|
voip.constant("TGVOIP_ERROR_AUDIO_IO", TGVOIP_ERROR_AUDIO_IO);
|
|
|
|
|
|
|
|
voip.constant("NET_TYPE_UNKNOWN", NET_TYPE_UNKNOWN);
|
|
|
|
voip.constant("NET_TYPE_GPRS", NET_TYPE_GPRS);
|
|
|
|
voip.constant("NET_TYPE_EDGE", NET_TYPE_EDGE);
|
|
|
|
voip.constant("NET_TYPE_3G", NET_TYPE_3G);
|
|
|
|
voip.constant("NET_TYPE_HSPA", NET_TYPE_HSPA);
|
|
|
|
voip.constant("NET_TYPE_LTE", NET_TYPE_LTE);
|
|
|
|
voip.constant("NET_TYPE_WIFI", NET_TYPE_WIFI);
|
|
|
|
voip.constant("NET_TYPE_ETHERNET", NET_TYPE_ETHERNET);
|
|
|
|
voip.constant("NET_TYPE_OTHER_HIGH_SPEED", NET_TYPE_OTHER_HIGH_SPEED);
|
|
|
|
voip.constant("NET_TYPE_OTHER_LOW_SPEED", NET_TYPE_OTHER_LOW_SPEED);
|
|
|
|
voip.constant("NET_TYPE_DIALUP", NET_TYPE_DIALUP);
|
|
|
|
voip.constant("NET_TYPE_OTHER_MOBILE", NET_TYPE_OTHER_MOBILE);
|
|
|
|
|
|
|
|
voip.constant("DATA_SAVING_NEVER", DATA_SAVING_NEVER);
|
|
|
|
voip.constant("DATA_SAVING_MOBILE", DATA_SAVING_MOBILE);
|
|
|
|
voip.constant("DATA_SAVING_ALWAYS", DATA_SAVING_ALWAYS);
|
|
|
|
|
|
|
|
voip.constant("PROXY_NONE", PROXY_NONE);
|
|
|
|
voip.constant("PROXY_SOCKS5", PROXY_SOCKS5);
|
|
|
|
|
|
|
|
|
|
|
|
voip.constant("FRAME_NUMBER", 960);
|
|
|
|
voip.constant("FRAME_SIZE", 960*2);
|
2017-07-01 19:40:28 +02:00
|
|
|
|
2017-07-01 15:12:52 +02:00
|
|
|
Php::Namespace danog("danog");
|
|
|
|
Php::Namespace MadelineProto("MadelineProto");
|
2017-07-01 19:40:28 +02:00
|
|
|
|
2017-07-01 15:12:52 +02:00
|
|
|
MadelineProto.add(std::move(voip));
|
|
|
|
danog.add(std::move(MadelineProto));
|
|
|
|
extension.add(std::move(danog));
|
|
|
|
|
|
|
|
return extension;
|
|
|
|
}
|
2017-04-05 03:46:16 +02:00
|
|
|
}
|