-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathdeployment_configuration.h
34 lines (28 loc) · 1.06 KB
/
deployment_configuration.h
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
// aws-greengrass-lite - AWS IoT Greengrass runtime for constrained devices
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0
#ifndef GGDEPLOYMENTD_DEPLOYMENT_CONFIGURATION_H
#define GGDEPLOYMENTD_DEPLOYMENT_CONFIGURATION_H
#include <ggl/buffer.h>
#include <ggl/error.h>
#include <ggl/vector.h>
typedef struct {
char data_endpoint[128];
char cert_path[128];
char rootca_path[128];
char pkey_path[128];
char region[24];
char port[16];
} DeploymentConfiguration;
extern DeploymentConfiguration config;
GglError get_data_endpoint(GglByteVec *endpoint);
GglError get_data_port(GglByteVec *port);
GglError get_region(GglByteVec *region);
GglError get_thing_name(GglBuffer *thing_name);
GglError get_root_ca_path(GglBuffer *root_ca_path);
GglError get_tes_cred_url(GglBuffer *tes_cred_url);
GglError get_posix_user(GglBuffer *posix_user);
GglError get_private_key_path(GglByteVec *pkey_path);
GglError get_cert_path(GglByteVec *cert_path);
GglError get_rootca_path(GglByteVec *rootca_path);
#endif