Loading...
Searching...
No Matches
lwm2m_client_objects.h
Go to the documentation of this file.
1/*
2 * Copyright (C) 2019 HAW Hamburg
3 *
4 * This file is subject to the terms and conditions of the GNU Lesser
5 * General Public License v2.1. See the file LICENSE in the top level
6 * directory for more details.
7 */
8
19#ifndef LWM2M_CLIENT_OBJECTS_H
20#define LWM2M_CLIENT_OBJECTS_H
21
22#ifdef __cplusplus
23extern "C" {
24#endif
25
26#include "lwm2m_client.h"
27
36#define LWM2M_ACC_CTRL_READ (1 << 0)
37#define LWM2M_ACC_CTRL_WRITE (1 << 1)
38#define LWM2M_ACC_CTRL_EXECUTE (1 << 2)
39#define LWM2M_ACC_CTRL_DELETE (1 << 3)
40#define LWM2M_ACC_CTRL_CREATE (1 << 4)
53 lwm2m_client_data_t *client_data);
54
65 lwm2m_client_data_t *client_data);
66
76 lwm2m_client_data_t *client_data);
77
87 lwm2m_client_data_t *client_data);
88
89#ifdef __cplusplus
90}
91#endif
92
93#endif /* LWM2M_CLIENT_OBJECTS_H */
Definitions and public API for a LwM2M client using Wakaama.
lwm2m_object_t * lwm2m_client_get_security_object(lwm2m_client_data_t *client_data)
Creates a LwM2M security object with the default configuration from net/lwm2m.h.
lwm2m_object_t * lwm2m_client_get_server_object(lwm2m_client_data_t *client_data)
Creates a LwM2M server object with the default configuration from net/lwm2m.h.
lwm2m_object_t * lwm2m_client_get_device_object(lwm2m_client_data_t *client_data)
Creates a LwM2M device object with the default configuration from net/lwm2m.h.
lwm2m_object_t * lwm2m_client_get_acc_ctrl_object(lwm2m_client_data_t *client_data)
Creates a LwM2M access control object with the default configuration.
LwM2M client descriptor.