GNUnet  0.19.5
transport-testing-cmds.h File Reference
Include dependency graph for transport-testing-cmds.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Data Structures

struct  ConnectPeersState
 Struct to store information needed in callbacks. More...
 
struct  StartPeerState
 
struct  TestState
 

Macros

#define GNUNET_TRANSPORT_MAKE_DECL_SIMPLE_TRAIT(name, type)
 Create headers for a trait with name name for statically allocated data of type type. More...
 
#define GNUNET_TRANSPORT_MAKE_IMPL_SIMPLE_TRAIT(name, type)
 Create C implementation for a trait with name name for statically allocated data of type type. More...
 
#define GNUNET_TRANSPORT_SIMPLE_TRAITS(op)
 Call op on all simple traits. More...
 

Typedefs

typedef void *(* GNUNET_TRANSPORT_notify_connect_cb) (struct GNUNET_TESTING_Interpreter *is, const struct GNUNET_PeerIdentity *peer)
 

Functions

struct GNUNET_TESTING_Command GNUNET_TRANSPORT_cmd_start_peer (const char *label, const char *system_label, uint32_t no, const char *node_ip, struct GNUNET_MQ_MessageHandler *handlers, const char *cfgname, GNUNET_TRANSPORT_notify_connect_cb notify_connect, unsigned int broadcast)
 Create command. More...
 
struct GNUNET_TESTING_Command GNUNET_TRANSPORT_cmd_stop_peer (const char *label, const char *start_label)
 Create command. More...
 
struct GNUNET_TESTING_Command GNUNET_TRANSPORT_cmd_connect_peers (const char *label, const char *start_peer_label, const char *create_label, uint32_t num, struct GNUNET_TESTING_NetjailTopology *topology, unsigned int additional_connects)
 Create command. More...
 
struct GNUNET_TESTING_Command GNUNET_TRANSPORT_cmd_send_simple (const char *label, const char *start_peer_label, const char *create_label, uint32_t num, struct GNUNET_TESTING_NetjailTopology *topology)
 Create command. More...
 
struct GNUNET_TESTING_Command GNUNET_TRANSPORT_cmd_send_simple_performance (const char *label, const char *start_peer_label, const char *create_label, uint32_t num, int size, int max_send, struct GNUNET_TESTING_NetjailTopology *topology)
 
struct GNUNET_TESTING_Command GNUNET_TRANSPORT_cmd_backchannel_check (const char *label, const char *start_peer_label, const char *create_label, uint32_t num, unsigned int node_n, unsigned int namespace_n, struct GNUNET_TESTING_NetjailTopology *topology)
 Create command. More...
 
enum GNUNET_GenericReturnValue GNUNET_TRANSPORT_get_trait_peer_id (const struct GNUNET_TESTING_Command *cmd, const struct GNUNET_PeerIdentity **ret)
 
struct GNUNET_TESTING_Trait GNUNET_TRANSPORT_make_trait_peer_id (const struct GNUNET_PeerIdentity *value)
 
enum GNUNET_GenericReturnValue GNUNET_TRANSPORT_get_trait_connected_peers_map (const struct GNUNET_TESTING_Command *cmd, const struct GNUNET_CONTAINER_MultiShortmap **ret)
 
struct GNUNET_TESTING_Trait GNUNET_TRANSPORT_make_trait_connected_peers_map (const struct GNUNET_CONTAINER_MultiShortmap *value)
 
enum GNUNET_GenericReturnValue GNUNET_TRANSPORT_get_trait_hello_size (const struct GNUNET_TESTING_Command *cmd, const size_t **ret)
 
struct GNUNET_TESTING_Trait GNUNET_TRANSPORT_make_trait_hello_size (const size_t *value)
 
enum GNUNET_GenericReturnValue GNUNET_TRANSPORT_get_trait_hello (const struct GNUNET_TESTING_Command *cmd, const char **ret)
 
struct GNUNET_TESTING_Trait GNUNET_TRANSPORT_make_trait_hello (const char *value)
 
enum GNUNET_GenericReturnValue GNUNET_TRANSPORT_get_trait_application_handle (const struct GNUNET_TESTING_Command *cmd, const struct GNUNET_TRANSPORT_ApplicationHandle **ret)
 
struct GNUNET_TESTING_Trait GNUNET_TRANSPORT_make_trait_application_handle (const struct GNUNET_TRANSPORT_ApplicationHandle *value)
 
enum GNUNET_GenericReturnValue GNUNET_TRANSPORT_get_trait_connect_peer_state (const struct GNUNET_TESTING_Command *cmd, const struct ConnectPeersState **ret)
 
struct GNUNET_TESTING_Trait GNUNET_TRANSPORT_make_trait_connect_peer_state (const struct ConnectPeersState *value)
 
enum GNUNET_GenericReturnValue GNUNET_TRANSPORT_get_trait_state (const struct GNUNET_TESTING_Command *cmd, const struct StartPeerState **ret)
 
struct GNUNET_TESTING_Trait GNUNET_TRANSPORT_make_trait_state (const struct StartPeerState *value)
 
enum GNUNET_GenericReturnValue GNUNET_TRANSPORT_get_trait_broadcast (const struct GNUNET_TESTING_Command *cmd, const enum GNUNET_GenericReturnValue **ret)
 
struct GNUNET_TESTING_Trait GNUNET_TRANSPORT_make_trait_broadcast (const enum GNUNET_GenericReturnValue *value)
 

Macro Definition Documentation

◆ GNUNET_TRANSPORT_MAKE_DECL_SIMPLE_TRAIT

#define GNUNET_TRANSPORT_MAKE_DECL_SIMPLE_TRAIT (   name,
  type 
)
Value:
enum GNUNET_GenericReturnValue \
GNUNET_TRANSPORT_get_trait_ ## name ( \
const struct GNUNET_TESTING_Command *cmd, \
type **ret); \
struct GNUNET_TESTING_Trait \
GNUNET_TRANSPORT_make_trait_ ## name ( \
type * value);
static int ret
Return value of the commandline.
Definition: gnunet-abd.c:81
static char * value
Value of the record to add/remove.
const char * name
A command to be run by the interpreter.
enum GNUNET_TESTBED_UnderlayLinkModelType type
the type of this model

Create headers for a trait with name name for statically allocated data of type type.

Definition at line 357 of file transport-testing-cmds.h.

◆ GNUNET_TRANSPORT_MAKE_IMPL_SIMPLE_TRAIT

#define GNUNET_TRANSPORT_MAKE_IMPL_SIMPLE_TRAIT (   name,
  type 
)
Value:
enum GNUNET_GenericReturnValue \
GNUNET_TRANSPORT_get_trait_ ## name ( \
const struct GNUNET_TESTING_Command *cmd, \
type **ret) \
{ \
if (NULL == cmd->traits) return GNUNET_SYSERR; \
return cmd->traits (cmd->cls, \
(const void **) ret, \
0); \
} \
GNUNET_TRANSPORT_make_trait_ ## name ( \
type * value) \
{ \
struct GNUNET_TESTING_Trait ret = { \
.trait_name = GNUNET_S (name), \
.ptr = (const void *) value \
}; \
return ret; \
}
#define GNUNET_S(a)
API for writing an interpreter to test GNUnet components.
@ GNUNET_SYSERR
A struct GNUNET_TESTING_Trait can be used to exchange data between cmds.

Create C implementation for a trait with name name for statically allocated data of type type.

Definition at line 371 of file transport-testing-cmds.h.

◆ GNUNET_TRANSPORT_SIMPLE_TRAITS

#define GNUNET_TRANSPORT_SIMPLE_TRAITS (   op)
Value:
op (peer_id, const struct GNUNET_PeerIdentity) \
op (connected_peers_map, const struct GNUNET_CONTAINER_MultiShortmap) \
op (hello_size, const size_t) \
op (hello, const char) \
op (application_handle, const struct GNUNET_TRANSPORT_ApplicationHandle) \
op (connect_peer_state, const struct ConnectPeersState) \
op (state, const struct StartPeerState) \
op (broadcast, const enum GNUNET_GenericReturnValue)
static struct GNUNET_ARM_Operation * op
Current operation.
Definition: gnunet-arm.c:144
static char * peer_id
Option –peer.
Definition: gnunet-cadet.c:42
enum State state
current state of profiling
GNUNET_GenericReturnValue
Named constants for return values.
Struct to store information needed in callbacks.
Internal representation of the hash map.
The identity of the host (wraps the signing key of the peer).
Handle to the TRANSPORT subsystem for application management.

Call op on all simple traits.

Definition at line 398 of file transport-testing-cmds.h.

Typedef Documentation

◆ GNUNET_TRANSPORT_notify_connect_cb

typedef void*(* GNUNET_TRANSPORT_notify_connect_cb) (struct GNUNET_TESTING_Interpreter *is, const struct GNUNET_PeerIdentity *peer)

Definition at line 32 of file transport-testing-cmds.h.

Function Documentation

◆ GNUNET_TRANSPORT_cmd_start_peer()

struct GNUNET_TESTING_Command GNUNET_TRANSPORT_cmd_start_peer ( const char *  label,
const char *  system_label,
uint32_t  no,
const char *  node_ip,
struct GNUNET_MQ_MessageHandler handlers,
const char *  cfgname,
GNUNET_TRANSPORT_notify_connect_cb  notify_connect,
unsigned int  broadcast 
)

Create command.

Parameters
labelname for command.
system_labelLabel of the cmd to setup a test environment.
noDecimal number representing the last byte of the IP address of this peer.
node_ipThe IP address of this node.
handlersHandler for messages received by this peer.
cfgnameConfiguration file name for this peer.
notify_connectMethod which will be called, when a peer connects.
broadcastFlag indicating, if broadcast should be switched on.
Returns
command.

Definition at line 408 of file transport_api_cmd_start_peer.c.

452 {
453  struct StartPeerState *sps;
454  struct GNUNET_CONTAINER_MultiShortmap *connected_peers_map =
456  unsigned int i;
457 
458  sps = GNUNET_new (struct StartPeerState);
459  sps->no = no;
460  sps->system_label = GNUNET_strdup (system_label);
461  sps->connected_peers_map = connected_peers_map;
462  sps->cfgname = GNUNET_strdup (cfgname);
463  sps->node_ip = GNUNET_strdup (node_ip);
465  sps->broadcast = broadcast;
466 
467  if (NULL != handlers)
468  {
469  for (i = 0; NULL != handlers[i].cb; i++)
470  ;
471  sps->handlers = GNUNET_new_array (i + 1,
472  struct GNUNET_MQ_MessageHandler);
473  GNUNET_memcpy (sps->handlers,
474  handlers,
475  i * sizeof(struct GNUNET_MQ_MessageHandler));
476  }
477  return GNUNET_TESTING_command_new (sps,
478  label,
482  &sps->ac);
483 }
static struct GNUNET_CADET_MessageHandler handlers[]
Handlers, for diverse services.
struct GNUNET_TESTING_Command GNUNET_TESTING_command_new(void *cls, const char *label, GNUNET_TESTING_CommandRunRoutine run, GNUNET_TESTING_CommandCleanupRoutine cleanup, GNUNET_TESTING_CommandGetTraits traits, struct GNUNET_TESTING_AsyncContext *ac)
Create a new command.
struct GNUNET_CONTAINER_MultiShortmap * GNUNET_CONTAINER_multishortmap_create(unsigned int len, int do_not_copy_keys)
Create a multi peer map (hash map for public keys of peers).
#define GNUNET_memcpy(dst, src, n)
Call memcpy() but check for n being 0 first.
@ GNUNET_NO
#define GNUNET_strdup(a)
Wrapper around GNUNET_xstrdup_.
#define GNUNET_new(type)
Allocate a struct or union of the given type.
#define GNUNET_new_array(n, type)
Allocate a size n array with structs or unions of the given type.
Message handler for a specific message type.
unsigned int no
An unique number to identify the peer.
char * node_ip
The ip of a node.
enum GNUNET_GenericReturnValue broadcast
Flag indicating, if udp broadcast should be switched on.
struct GNUNET_MQ_MessageHandler * handlers
Receive callback.
struct GNUNET_CONTAINER_MultiShortmap * connected_peers_map
A map with struct GNUNET_MQ_Handle values for each peer this peer is connected to.
GNUNET_TRANSPORT_notify_connect_cb notify_connect
Callback which is called on neighbour connect events.
char * system_label
The label of the command which was started by calling GNUNET_TESTING_cmd_system_create.
char * cfgname
GNUnet configuration file used to start a peer.
struct GNUNET_TESTING_AsyncContext ac
Context for our asynchronous completion.
static void start_peer_cleanup(void *cls)
The cleanup function of this cmd frees resources the cmd allocated.
static void * notify_connect(void *cls, const struct GNUNET_PeerIdentity *peer, struct GNUNET_MQ_Handle *mq)
Connect callback for the connection to the core service.
static int start_peer_traits(void *cls, const void **ret, const char *trait, unsigned int index)
This function prepares an array with traits.
static void start_peer_run(void *cls, struct GNUNET_TESTING_Interpreter *is)
The run method of this cmd will start all services of a peer to test the transport service.

◆ GNUNET_TRANSPORT_cmd_stop_peer()

struct GNUNET_TESTING_Command GNUNET_TRANSPORT_cmd_stop_peer ( const char *  label,
const char *  start_label 
)

Create command.

Parameters
labelname for command.
start_labelLabel of the cmd to start the peer.
Returns
command.

Definition at line 124 of file transport_api_cmd_stop_peer.c.

143 {
144  struct StopPeerState *sps;
145 
146  sps = GNUNET_new (struct StopPeerState);
147  sps->start_label = start_label;
148  return GNUNET_TESTING_command_new (sps,
149  label,
150  &stop_peer_run,
153  NULL);
154 }
Struct to hold information for callbacks.
static int stop_peer_traits(void *cls, const void **ret, const char *trait, unsigned int index)
Trait function of this cmd does nothing.
static void stop_peer_cleanup(void *cls)
The cleanup function of this cmd frees resources the cmd allocated.
static void stop_peer_run(void *cls, struct GNUNET_TESTING_Interpreter *is)
The run method of this cmd will stop all services of a peer which were used to test the transport ser...

◆ GNUNET_TRANSPORT_cmd_connect_peers()

struct GNUNET_TESTING_Command GNUNET_TRANSPORT_cmd_connect_peers ( const char *  label,
const char *  start_peer_label,
const char *  create_label,
uint32_t  num,
struct GNUNET_TESTING_NetjailTopology topology,
unsigned int  additional_connects 
)

Create command.

Parameters
labelname for command
start_peer_labelLabel of the cmd to start a peer.
create_labelLabel of the cmd which started the test system.
numNumber globally identifying the node.
topologyThe topology for the test setup.
additional_connectsNumber of additional connects this cmd will wait for not triggered by this cmd.
Returns
command.

Definition at line 218 of file transport_api_cmd_connecting_peers.c.

256 {
257  struct ConnectPeersState *cps;
258  unsigned int node_additional_connects;
259 
260  node_additional_connects = GNUNET_TESTING_get_additional_connects (num,
261  topology);
262 
264  "global: %u and local: %u additional_connects\n",
266  node_additional_connects);
267 
268  if (0 != node_additional_connects)
269  additional_connects = node_additional_connects;
270 
271  cps = GNUNET_new (struct ConnectPeersState);
273  cps->num = num;
274  cps->create_label = create_label;
275  cps->topology = topology;
278 
279  return GNUNET_TESTING_command_new (cps,
280  label,
284  &cps->ac);
285 }
enum GNUNET_TESTBED_TopologyOption topology
The topology to generate.
unsigned int GNUNET_TESTING_get_additional_connects(unsigned int num, struct GNUNET_TESTING_NetjailTopology *topology)
Get the number of unintentional additional connections the node waits for.
Definition: testing.c:2480
@ GNUNET_ERROR_TYPE_DEBUG
struct GNUNET_TESTING_AsyncContext ac
Context for our asynchronous completion.
uint32_t num
Number globally identifying the node.
struct GNUNET_TESTING_NetjailTopology * topology
The topology of the test setup.
GNUNET_TRANSPORT_notify_connect_cb notify_connect
const char * start_peer_label
Label of the cmd to start a peer.
unsigned int additional_connects
Number of additional connects this cmd will wait for not triggered by this cmd.
static void connect_peers_run(void *cls, struct GNUNET_TESTING_Interpreter *is)
The run method of this cmd will connect to peers.
static void * notify_connect(struct GNUNET_TESTING_Interpreter *is, const struct GNUNET_PeerIdentity *peer)
Callback from start peer cmd for signaling a peer got connected.
#define LOG(kind,...)
Generic logging shortcut.
static void connect_peers_cleanup(void *cls)
The cleanup function of this cmd frees resources the cmd allocated.
enum GNUNET_GenericReturnValue connect_peers_traits(void *cls, const void **ret, const char *trait, unsigned int index)
This function prepares an array with traits.

◆ GNUNET_TRANSPORT_cmd_send_simple()

struct GNUNET_TESTING_Command GNUNET_TRANSPORT_cmd_send_simple ( const char *  label,
const char *  start_peer_label,
const char *  create_label,
uint32_t  num,
struct GNUNET_TESTING_NetjailTopology topology 
)

Create command.

Parameters
labelname for command.
start_peer_labelLabel of the cmd to start a peer.
create_labelLabel of the cmd which started the test system.
numNumber globally identifying the node.
topologyThe topology for the test setup.
Returns
command.

Definition at line 114 of file transport_api_cmd_send_simple.c.

147 {
148  struct SendSimpleState *sss;
149 
150  sss = GNUNET_new (struct SendSimpleState);
151  sss->num = num;
153  sss->create_label = create_label;
154  sss->topology = topology;
155 
156  return GNUNET_TESTING_command_new (sss,
157  label,
160  NULL,
161  NULL);
162 }
Struct to hold information for callbacks.
const char * create_label
Label of the cmd which started the test system.
uint32_t num
Number globally identifying the node.
struct GNUNET_TESTING_NetjailTopology * topology
The topology we get the connected nodes from.
const char * start_peer_label
Label of the cmd to start a peer.
static void send_simple_run(void *cls, struct GNUNET_TESTING_Interpreter *is)
The run method of this cmd will send a simple message to the connected peers.
static void send_simple_cleanup(void *cls)
The cleanup function of this cmd frees resources the cmd allocated.

◆ GNUNET_TRANSPORT_cmd_send_simple_performance()

struct GNUNET_TESTING_Command GNUNET_TRANSPORT_cmd_send_simple_performance ( const char *  label,
const char *  start_peer_label,
const char *  create_label,
uint32_t  num,
int  size,
int  max_send,
struct GNUNET_TESTING_NetjailTopology topology 
)
Parameters
labelname for command.
start_peer_labelLabel of the cmd to start a peer.
create_labelLabel of the cmd which started the test system.
numNumber globally identifying the node.
sizeThe size of the test message to send.
max_sendThe number of messages to send.
topologyThe topology for the test setup.
Returns
command.

Definition at line 164 of file transport_api_cmd_send_simple_performance.c.

201 {
202  struct SendSimplePerfState *sss;
203  struct GNUNET_TESTING_Command cmd;
204 
205  sss = GNUNET_new (struct SendSimplePerfState);
206  sss->start_peer_label = start_peer_label;
207  sss->create_label = create_label;
208  sss->topology = topology;
209  sss->size = size;
210  sss->max_send = max_send;
211 
212  cmd = GNUNET_TESTING_command_new (sss,
213  label,
216  NULL,
217  &sss->ac);
218  cmd.asynchronous_finish = GNUNET_YES;
219  return cmd;
220 }
@ GNUNET_YES
static unsigned int size
Size of the "table".
Definition: peer.c:68
char label[127+1]
Label for the command.
Struct to hold information for callbacks.
unsigned int size
Size of the message in bytes.
unsigned int max_send
Maximum number of messages per peer.
struct GNUNET_TESTING_AsyncContext ac
Context for our asynchronous completion.
const char * create_label
Label of the cmd which started the test system.
struct GNUNET_TESTING_NetjailTopology * topology
The topology we get the connected nodes from.
const char * start_peer_label
Label of the cmd to start a peer.
static void send_simple_run(void *cls, struct GNUNET_TESTING_Interpreter *is)
The run method of this cmd will send a simple message to the connected peers.
static void send_simple_cleanup(void *cls)
The cleanup function of this cmd frees resources the cmd allocated.

◆ GNUNET_TRANSPORT_cmd_backchannel_check()

struct GNUNET_TESTING_Command GNUNET_TRANSPORT_cmd_backchannel_check ( const char *  label,
const char *  start_peer_label,
const char *  create_label,
uint32_t  num,
unsigned int  node_n,
unsigned int  namespace_n,
struct GNUNET_TESTING_NetjailTopology topology 
)

Create command.

Parameters
labelname for command.
start_peer_labelLabel of the cmd to start a peer.
create_labelLabel of the cmd to create the testing system.
numNumber globally identifying the node.
node_nThe number of the node in a network namespace.
namespace_nThe number of the network namespace.
topologyThe topology for the test setup.
Returns
command.

Definition at line 520 of file transport_api_cmd_backchannel_check.c.

537 {
538  struct CheckState *cs;
539 
540  cs = GNUNET_new (struct CheckState);
542  cs->num = num;
544  cs->topology = topology;
545  cs->node_n = node_n;
546  cs->namespace_n = namespace_n;
547 
548  return GNUNET_TESTING_command_new (cs,
549  label,
553  &cs->ac);
554 }
Struct to store information needed in callbacks.
const char * start_peer_label
Label of the cmd to start a peer.
uint32_t num
Number globally identifying the node.
struct GNUNET_TESTING_AsyncContext ac
Context for our asynchronous completion.
unsigned int node_n
The number of the node in a network namespace.
unsigned int namespace_n
The number of the network namespace.
struct GNUNET_TESTING_NetjailTopology * topology
The topology of the test setup.
static void backchannel_check_cleanup(void *cls)
The cleanup function of this cmd frees resources the cmd allocated.
static void backchannel_check_run(void *cls, struct GNUNET_TESTING_Interpreter *is)
The run method of this cmd will connect to peers.
static int backchannel_check_traits(void *cls, const void **ret, const char *trait, unsigned int index)
Trait function of this cmd does nothing.

◆ GNUNET_TRANSPORT_get_trait_peer_id()

enum GNUNET_GenericReturnValue GNUNET_TRANSPORT_get_trait_peer_id ( const struct GNUNET_TESTING_Command cmd,
const struct GNUNET_PeerIdentity **  ret 
)

Definition at line 1 of file transport_api_traits.c.

◆ GNUNET_TRANSPORT_make_trait_peer_id()

struct GNUNET_TESTING_Trait GNUNET_TRANSPORT_make_trait_peer_id ( const struct GNUNET_PeerIdentity value)

Definition at line 1 of file transport_api_traits.c.

Referenced by start_peer_traits().

Here is the caller graph for this function:

◆ GNUNET_TRANSPORT_get_trait_connected_peers_map()

enum GNUNET_GenericReturnValue GNUNET_TRANSPORT_get_trait_connected_peers_map ( const struct GNUNET_TESTING_Command cmd,
const struct GNUNET_CONTAINER_MultiShortmap **  ret 
)

Definition at line 1 of file transport_api_traits.c.

Referenced by send_simple_run().

Here is the caller graph for this function:

◆ GNUNET_TRANSPORT_make_trait_connected_peers_map()

struct GNUNET_TESTING_Trait GNUNET_TRANSPORT_make_trait_connected_peers_map ( const struct GNUNET_CONTAINER_MultiShortmap value)

Definition at line 1 of file transport_api_traits.c.

Referenced by start_peer_traits().

Here is the caller graph for this function:

◆ GNUNET_TRANSPORT_get_trait_hello_size()

enum GNUNET_GenericReturnValue GNUNET_TRANSPORT_get_trait_hello_size ( const struct GNUNET_TESTING_Command cmd,
const size_t **  ret 
)

Definition at line 1 of file transport_api_traits.c.

◆ GNUNET_TRANSPORT_make_trait_hello_size()

struct GNUNET_TESTING_Trait GNUNET_TRANSPORT_make_trait_hello_size ( const size_t *  value)

Definition at line 1 of file transport_api_traits.c.

Referenced by start_peer_traits().

Here is the caller graph for this function:

◆ GNUNET_TRANSPORT_get_trait_hello()

enum GNUNET_GenericReturnValue GNUNET_TRANSPORT_get_trait_hello ( const struct GNUNET_TESTING_Command cmd,
const char **  ret 
)

Definition at line 1 of file transport_api_traits.c.

◆ GNUNET_TRANSPORT_make_trait_hello()

struct GNUNET_TESTING_Trait GNUNET_TRANSPORT_make_trait_hello ( const char *  value)

Definition at line 1 of file transport_api_traits.c.

Referenced by start_peer_traits().

Here is the caller graph for this function:

◆ GNUNET_TRANSPORT_get_trait_application_handle()

enum GNUNET_GenericReturnValue GNUNET_TRANSPORT_get_trait_application_handle ( const struct GNUNET_TESTING_Command cmd,
const struct GNUNET_TRANSPORT_ApplicationHandle **  ret 
)

Definition at line 1 of file transport_api_traits.c.

Referenced by backchannel_check_run(), and connect_peers_run().

Here is the caller graph for this function:

◆ GNUNET_TRANSPORT_make_trait_application_handle()

struct GNUNET_TESTING_Trait GNUNET_TRANSPORT_make_trait_application_handle ( const struct GNUNET_TRANSPORT_ApplicationHandle value)

Definition at line 1 of file transport_api_traits.c.

Referenced by start_peer_traits().

Here is the caller graph for this function:

◆ GNUNET_TRANSPORT_get_trait_connect_peer_state()

enum GNUNET_GenericReturnValue GNUNET_TRANSPORT_get_trait_connect_peer_state ( const struct GNUNET_TESTING_Command cmd,
const struct ConnectPeersState **  ret 
)

Definition at line 1 of file transport_api_traits.c.

◆ GNUNET_TRANSPORT_make_trait_connect_peer_state()

struct GNUNET_TESTING_Trait GNUNET_TRANSPORT_make_trait_connect_peer_state ( const struct ConnectPeersState value)

Definition at line 1 of file transport_api_traits.c.

◆ GNUNET_TRANSPORT_get_trait_state()

enum GNUNET_GenericReturnValue GNUNET_TRANSPORT_get_trait_state ( const struct GNUNET_TESTING_Command cmd,
const struct StartPeerState **  ret 
)

Definition at line 1 of file transport_api_traits.c.

Referenced by stop_peer_run().

Here is the caller graph for this function:

◆ GNUNET_TRANSPORT_make_trait_state()

struct GNUNET_TESTING_Trait GNUNET_TRANSPORT_make_trait_state ( const struct StartPeerState value)

Definition at line 1 of file transport_api_traits.c.

Referenced by start_peer_traits().

Here is the caller graph for this function:

◆ GNUNET_TRANSPORT_get_trait_broadcast()

enum GNUNET_GenericReturnValue GNUNET_TRANSPORT_get_trait_broadcast ( const struct GNUNET_TESTING_Command cmd,
const enum GNUNET_GenericReturnValue **  ret 
)

Definition at line 1 of file transport_api_traits.c.

Referenced by connect_peers_run().

Here is the caller graph for this function:

◆ GNUNET_TRANSPORT_make_trait_broadcast()

struct GNUNET_TESTING_Trait GNUNET_TRANSPORT_make_trait_broadcast ( const enum GNUNET_GenericReturnValue value)

Definition at line 1 of file transport_api_traits.c.

Referenced by start_peer_traits().

Here is the caller graph for this function: