├── .gitignore ├── LICENSE ├── README ├── TODO ├── core ├── CMakeLists.txt ├── er-coap-13 │ ├── LICENSE │ ├── er-coap-13.c │ └── er-coap-13.h ├── internals.h ├── liblwm2m.c ├── liblwm2m.h ├── list.c ├── management.c ├── object_server.c ├── objects.c ├── observe.c ├── packet.c ├── registration.c ├── tlv.c ├── transaction.c ├── uri.c └── utils.c └── tests ├── TLV ├── CMakeLists.txt └── decode.c ├── client ├── CMakeLists.txt ├── lwm2mclient.c ├── object_device.c ├── object_firmware.c └── test_object.c ├── server ├── CMakeLists.txt └── lwm2mserver.c └── utils ├── commandline.c ├── commandline.h ├── connection.c └── connection.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/liblwm2m/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/liblwm2m/HEAD/LICENSE -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/liblwm2m/HEAD/README -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/liblwm2m/HEAD/TODO -------------------------------------------------------------------------------- /core/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/liblwm2m/HEAD/core/CMakeLists.txt -------------------------------------------------------------------------------- /core/er-coap-13/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/liblwm2m/HEAD/core/er-coap-13/LICENSE -------------------------------------------------------------------------------- /core/er-coap-13/er-coap-13.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/liblwm2m/HEAD/core/er-coap-13/er-coap-13.c -------------------------------------------------------------------------------- /core/er-coap-13/er-coap-13.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/liblwm2m/HEAD/core/er-coap-13/er-coap-13.h -------------------------------------------------------------------------------- /core/internals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/liblwm2m/HEAD/core/internals.h -------------------------------------------------------------------------------- /core/liblwm2m.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/liblwm2m/HEAD/core/liblwm2m.c -------------------------------------------------------------------------------- /core/liblwm2m.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/liblwm2m/HEAD/core/liblwm2m.h -------------------------------------------------------------------------------- /core/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/liblwm2m/HEAD/core/list.c -------------------------------------------------------------------------------- /core/management.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/liblwm2m/HEAD/core/management.c -------------------------------------------------------------------------------- /core/object_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/liblwm2m/HEAD/core/object_server.c -------------------------------------------------------------------------------- /core/objects.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/liblwm2m/HEAD/core/objects.c -------------------------------------------------------------------------------- /core/observe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/liblwm2m/HEAD/core/observe.c -------------------------------------------------------------------------------- /core/packet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/liblwm2m/HEAD/core/packet.c -------------------------------------------------------------------------------- /core/registration.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/liblwm2m/HEAD/core/registration.c -------------------------------------------------------------------------------- /core/tlv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/liblwm2m/HEAD/core/tlv.c -------------------------------------------------------------------------------- /core/transaction.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/liblwm2m/HEAD/core/transaction.c -------------------------------------------------------------------------------- /core/uri.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/liblwm2m/HEAD/core/uri.c -------------------------------------------------------------------------------- /core/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/liblwm2m/HEAD/core/utils.c -------------------------------------------------------------------------------- /tests/TLV/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/liblwm2m/HEAD/tests/TLV/CMakeLists.txt -------------------------------------------------------------------------------- /tests/TLV/decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/liblwm2m/HEAD/tests/TLV/decode.c -------------------------------------------------------------------------------- /tests/client/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/liblwm2m/HEAD/tests/client/CMakeLists.txt -------------------------------------------------------------------------------- /tests/client/lwm2mclient.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/liblwm2m/HEAD/tests/client/lwm2mclient.c -------------------------------------------------------------------------------- /tests/client/object_device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/liblwm2m/HEAD/tests/client/object_device.c -------------------------------------------------------------------------------- /tests/client/object_firmware.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/liblwm2m/HEAD/tests/client/object_firmware.c -------------------------------------------------------------------------------- /tests/client/test_object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/liblwm2m/HEAD/tests/client/test_object.c -------------------------------------------------------------------------------- /tests/server/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/liblwm2m/HEAD/tests/server/CMakeLists.txt -------------------------------------------------------------------------------- /tests/server/lwm2mserver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/liblwm2m/HEAD/tests/server/lwm2mserver.c -------------------------------------------------------------------------------- /tests/utils/commandline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/liblwm2m/HEAD/tests/utils/commandline.c -------------------------------------------------------------------------------- /tests/utils/commandline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/liblwm2m/HEAD/tests/utils/commandline.h -------------------------------------------------------------------------------- /tests/utils/connection.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/liblwm2m/HEAD/tests/utils/connection.c -------------------------------------------------------------------------------- /tests/utils/connection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/liblwm2m/HEAD/tests/utils/connection.h --------------------------------------------------------------------------------