1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
|
/* selfname_change_conference_test.c
*
* Small test for checking if obtaining savedata, saving it to disk and using
* works correctly.
*
* Copyright (C) 2017 Tox project All Rights Reserved.
*
* This file is part of Tox.
*
* Tox is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Tox 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Tox. If not, see <http://www.gnu.org/licenses/>.
*
*/
#ifndef _XOPEN_SOURCE
#define _XOPEN_SOURCE 600
#endif
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
#include "helpers.h"
#include "../toxcore/tox.h"
#include "../toxencryptsave/toxencryptsave.h"
static const char *newname = "chris";
static void cbconfmembers(Tox *tox, uint32_t conference_number, uint32_t peer_number,
const uint8_t *name, size_t length,
void *user_data)
{
uint8_t new_peer_name[TOX_MAX_NAME_LENGTH + 1];
if (!tox_conference_peer_get_name(tox, conference_number, peer_number, new_peer_name, nullptr)) {
return;
}
if (!memcmp(newname, new_peer_name, tox_conference_peer_get_name_size(tox, conference_number, peer_number, nullptr))) {
printf("success: own name was changed and updated in the conference");
exit(0);
}
}
int main(void)
{
setvbuf(stdout, nullptr, _IONBF, 0);
struct Tox_Options *to = tox_options_new(nullptr);
Tox *t;
TOX_ERR_CONFERENCE_NEW conference_err;
TOX_ERR_SET_INFO name_err;
t = tox_new_log(to, nullptr, nullptr);
tox_options_free(to);
tox_callback_conference_peer_name(t, cbconfmembers);
if (tox_conference_new(t, &conference_err) == UINT32_MAX) {
tox_kill(t);
fprintf(stderr, "error: could not create new conference, error code %d\n", conference_err);
return 2;
}
tox_iterate(t, nullptr);
c_sleep(tox_iteration_interval(t));
if (!tox_self_set_name(t, (const uint8_t *)newname, strlen(newname), &name_err)) {
tox_kill(t);
fprintf(stderr, "error: could not set own name, error code %d\n", name_err);
return 3;
}
tox_iterate(t, nullptr);
c_sleep(tox_iteration_interval(t));
tox_iterate(t, nullptr);
fprintf(stderr, "error: name was not changed in callback. exiting.\n");
tox_kill(t);
return 1;
}
|