7d6f14db10
GitOrigin-RevId: aaf756de59e72f949c1150d99e1277047f25fac9
48 lines
1.3 KiB
C++
48 lines
1.3 KiB
C++
//
|
|
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2020
|
|
//
|
|
// Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
//
|
|
#include "td/telegram/td_json_client.h"
|
|
|
|
#include "td/telegram/ClientJson.h"
|
|
|
|
#include "td/utils/Slice.h"
|
|
|
|
void *td_json_client_create() {
|
|
return new td::ClientJson();
|
|
}
|
|
|
|
void td_json_client_destroy(void *client) {
|
|
delete static_cast<td::ClientJson *>(client);
|
|
}
|
|
|
|
void td_json_client_send(void *client, const char *request) {
|
|
static_cast<td::ClientJson *>(client)->send(td::Slice(request == nullptr ? "" : request));
|
|
}
|
|
|
|
const char *td_json_client_receive(void *client, double timeout) {
|
|
return static_cast<td::ClientJson *>(client)->receive(timeout);
|
|
}
|
|
|
|
const char *td_json_client_execute(void *client, const char *request) {
|
|
return td::ClientJson::execute(td::Slice(request == nullptr ? "" : request));
|
|
}
|
|
|
|
int td_create_client() {
|
|
return td::td_json_create_client();
|
|
}
|
|
|
|
void td_send(int client_id, const char *request) {
|
|
td::td_json_send(client_id, td::Slice(request == nullptr ? "" : request));
|
|
}
|
|
|
|
const char *td_receive(double timeout) {
|
|
return td::td_json_receive(timeout);
|
|
}
|
|
|
|
const char *td_execute(const char *request) {
|
|
return td::td_json_execute(td::Slice(request == nullptr ? "" : request));
|
|
}
|