mirror of
https://github.com/irungentoo/toxcore.git
synced 2024-03-22 13:30:51 +08:00
e230ad4d09
Tokstyle will require this format: - Optionally a single include (the module header). - System includes. - Local includes. In headers, there is no module header to include, so system includes come first there.
120 lines
3.7 KiB
C
120 lines
3.7 KiB
C
/* SPDX-License-Identifier: GPL-3.0-or-later
|
|
* Copyright © 2016-2021 The TokTok team.
|
|
*/
|
|
#include "tox.h"
|
|
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
#include "ccompat.h"
|
|
#include "tox_private.h"
|
|
|
|
#define SET_ERROR_PARAMETER(param, x) \
|
|
do { \
|
|
if (param != nullptr) { \
|
|
*param = x; \
|
|
} \
|
|
} while (0)
|
|
|
|
//!TOKSTYLE-
|
|
|
|
#define CONST_FUNCTION(lowercase, uppercase) \
|
|
uint32_t tox_##lowercase(void) \
|
|
{ \
|
|
return TOX_##uppercase; \
|
|
}
|
|
|
|
CONST_FUNCTION(version_major, VERSION_MAJOR)
|
|
CONST_FUNCTION(version_minor, VERSION_MINOR)
|
|
CONST_FUNCTION(version_patch, VERSION_PATCH)
|
|
CONST_FUNCTION(public_key_size, PUBLIC_KEY_SIZE)
|
|
CONST_FUNCTION(secret_key_size, SECRET_KEY_SIZE)
|
|
CONST_FUNCTION(conference_uid_size, CONFERENCE_UID_SIZE)
|
|
CONST_FUNCTION(conference_id_size, CONFERENCE_ID_SIZE)
|
|
CONST_FUNCTION(nospam_size, NOSPAM_SIZE)
|
|
CONST_FUNCTION(address_size, ADDRESS_SIZE)
|
|
CONST_FUNCTION(max_name_length, MAX_NAME_LENGTH)
|
|
CONST_FUNCTION(max_status_message_length, MAX_STATUS_MESSAGE_LENGTH)
|
|
CONST_FUNCTION(max_friend_request_length, MAX_FRIEND_REQUEST_LENGTH)
|
|
CONST_FUNCTION(max_message_length, MAX_MESSAGE_LENGTH)
|
|
CONST_FUNCTION(max_custom_packet_size, MAX_CUSTOM_PACKET_SIZE)
|
|
CONST_FUNCTION(hash_length, HASH_LENGTH)
|
|
CONST_FUNCTION(file_id_length, FILE_ID_LENGTH)
|
|
CONST_FUNCTION(max_filename_length, MAX_FILENAME_LENGTH)
|
|
CONST_FUNCTION(max_hostname_length, MAX_HOSTNAME_LENGTH)
|
|
CONST_FUNCTION(dht_node_ip_string_size, DHT_NODE_IP_STRING_SIZE)
|
|
CONST_FUNCTION(dht_node_public_key_size, DHT_NODE_PUBLIC_KEY_SIZE)
|
|
|
|
|
|
#define ACCESSORS(type, ns, name) \
|
|
type tox_options_get_##ns##name(const struct Tox_Options *options) \
|
|
{ \
|
|
return options->ns##name; \
|
|
} \
|
|
void tox_options_set_##ns##name(struct Tox_Options *options, type name) \
|
|
{ \
|
|
options->ns##name = name; \
|
|
}
|
|
|
|
ACCESSORS(bool,, ipv6_enabled)
|
|
ACCESSORS(bool,, udp_enabled)
|
|
ACCESSORS(Tox_Proxy_Type, proxy_, type)
|
|
ACCESSORS(const char *, proxy_, host)
|
|
ACCESSORS(uint16_t, proxy_, port)
|
|
ACCESSORS(uint16_t,, start_port)
|
|
ACCESSORS(uint16_t,, end_port)
|
|
ACCESSORS(uint16_t,, tcp_port)
|
|
ACCESSORS(bool,, hole_punching_enabled)
|
|
ACCESSORS(Tox_Savedata_Type, savedata_, type)
|
|
ACCESSORS(size_t, savedata_, length)
|
|
ACCESSORS(tox_log_cb *, log_, callback)
|
|
ACCESSORS(void *, log_, user_data)
|
|
ACCESSORS(bool,, local_discovery_enabled)
|
|
ACCESSORS(bool,, experimental_thread_safety)
|
|
|
|
//!TOKSTYLE+
|
|
|
|
const uint8_t *tox_options_get_savedata_data(const struct Tox_Options *options)
|
|
{
|
|
return options->savedata_data;
|
|
}
|
|
|
|
void tox_options_set_savedata_data(struct Tox_Options *options, const uint8_t *data, size_t length)
|
|
{
|
|
options->savedata_data = data;
|
|
options->savedata_length = length;
|
|
}
|
|
|
|
void tox_options_default(struct Tox_Options *options)
|
|
{
|
|
if (options != nullptr) {
|
|
const struct Tox_Options default_options = {0};
|
|
*options = default_options;
|
|
tox_options_set_ipv6_enabled(options, true);
|
|
tox_options_set_udp_enabled(options, true);
|
|
tox_options_set_proxy_type(options, TOX_PROXY_TYPE_NONE);
|
|
tox_options_set_hole_punching_enabled(options, true);
|
|
tox_options_set_local_discovery_enabled(options, true);
|
|
tox_options_set_experimental_thread_safety(options, false);
|
|
}
|
|
}
|
|
|
|
struct Tox_Options *tox_options_new(Tox_Err_Options_New *error)
|
|
{
|
|
struct Tox_Options *options = (struct Tox_Options *)calloc(1, sizeof(struct Tox_Options));
|
|
|
|
if (options != nullptr) {
|
|
tox_options_default(options);
|
|
SET_ERROR_PARAMETER(error, TOX_ERR_OPTIONS_NEW_OK);
|
|
return options;
|
|
}
|
|
|
|
SET_ERROR_PARAMETER(error, TOX_ERR_OPTIONS_NEW_MALLOC);
|
|
return nullptr;
|
|
}
|
|
|
|
void tox_options_free(struct Tox_Options *options)
|
|
{
|
|
free(options);
|
|
}
|