summaryrefslogtreecommitdiffstats
path: root/aclk/schema-wrappers/node_connection.h
blob: 3fd20721340d3178df5160ec764a464aab66d34b (plain)
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
// SPDX-License-Identifier: GPL-3.0-or-later

#ifndef ACLK_SCHEMA_WRAPPER_NODE_CONNECTION_H
#define ACLK_SCHEMA_WRAPPER_NODE_CONNECTION_H

#ifdef __cplusplus
extern "C" {
#endif

typedef struct {
    const char* claim_id;
    const char* node_id;

    unsigned int live:1;
    unsigned int queryable:1;

    int64_t session_id;

    int32_t hops;
} node_instance_connection_t;

char *generate_node_instance_connection(size_t *len, const node_instance_connection_t *data);


#ifdef __cplusplus
}
#endif

#endif /* ACLK_SCHEMA_WRAPPER_NODE_CONNECTION_H */