GNUnet 0.21.2
testing_cmds.h
Go to the documentation of this file.
1/*
2 This file is part of GNUnet
3 Copyright (C) 2021 GNUnet e.V.
4
5 GNUnet is free software: you can redistribute it and/or modify it
6 under the terms of the GNU Affero General Public License as published
7 by the Free Software Foundation, either version 3 of the License,
8 or (at your option) any later version.
9
10 GNUnet is distributed in the hope that it will be useful, but
11 WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Affero General Public License for more details.
14
15 You should have received a copy of the GNU Affero General Public License
16 along with this program. If not, see <http://www.gnu.org/licenses/>.
17
18 SPDX-License-Identifier: AGPL3.0-or-later
19 */
20
27#ifndef TESTING_CMDS_H
28#define TESTING_CMDS_H
29
30#include "gnunet_common.h"
31
32#define HELPER_CMDS_BINARY "gnunet-cmds-helper"
33
34#define NETJAIL_EXEC_SCRIPT "netjail_exec.sh"
35
37
42{
47
52
53 /* Followed by barrier_count barrier hashes */
54
55 /* Followed by topology data */
56};
57
58
60{
65
69 uint32_t rv GNUNET_PACKED;
70};
71
72
78{
81};
82
83
90{
93};
94
95
100{
103};
104
105
107
108#endif
109/* end of testing_cmds.h */
commonly used definitions; globals in this file are exempt from the rule that the module name ("commo...
#define GNUNET_NETWORK_STRUCT_BEGIN
Define as empty, GNUNET_PACKED should suffice, but this won't work on W32.
#define GNUNET_NETWORK_STRUCT_END
Define as empty, GNUNET_PACKED should suffice, but this won't work on W32;.
#define GNUNET_PACKED
gcc-ism to get packed structs.
Header for all communications.
A 256-bit hashcode.
Parent to child: you're inheriting a barrier.
Definition: testing_cmds.h:90
struct GNUNET_ShortHashCode barrier_key
Definition: testing_cmds.h:92
struct GNUNET_MessageHeader header
Definition: testing_cmds.h:91
Child to parent: I reached the given barrier, increment the counter (or pass to grandparent).
Definition: testing_cmds.h:78
struct GNUNET_ShortHashCode barrier_key
Definition: testing_cmds.h:80
struct GNUNET_MessageHeader header
Definition: testing_cmds.h:79
Parent to child: this barrier was satisfied.
Definition: testing_cmds.h:100
struct GNUNET_MessageHeader header
Definition: testing_cmds.h:101
struct GNUNET_ShortHashCode barrier_key
Definition: testing_cmds.h:102
Initialization message for gnunet-cmds-testbed to start cmd binary.
Definition: testing_cmds.h:42
uint32_t barrier_count
Number of barriers the helper inherits.
Definition: testing_cmds.h:51
struct GNUNET_MessageHeader header
Type is GNUNET_MESSAGE_TYPE_CMDS_HELPER_INIT.
Definition: testing_cmds.h:46
struct GNUNET_MessageHeader header
Type is GNUNET_MESSAGE_TYPE_CMDS_HELPER_LOCAL_FINISHED.
Definition: testing_cmds.h:64
uint32_t rv
The exit status local test return with in NBO.
Definition: testing_cmds.h:69