blob: 043a31774597111454d7c65b1ce597cfa71306fa (
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
30
31
32
33
34
35
36
37
38
39
40
41
42
|
libcoap: A C implementation of IETF Core Application protocol
Copyright (C) 2010--2013 by Olaf Bergmann <bergmann@tzi.org>
ABOUT LIBCOAP
libcoap is a C implementation of a lightweight application-protocol
for devices that are constrained their resources such as computing
power, RF range, memory, bandwith, or network packet sizes. This
protocol, CoAP, is developed in the IETF working group "Constrained
RESTful Environments (core)", see <http://6lowapp.net>.
PACKAGE CONTENTS
This directory contains a protocol parser and basic networking
functions for platform with support for malloc() and BSD-style
sockets. The examples directory contains a client and a server to
demonstrate the use of this library.
LICENSE INFORMATION
This library is published as open-source software without any warranty
of any kind. Use is permitted under the terms of the GNU General
Public License (GPL), Version 2 or higher, OR the revised BSD
license. Please refer to LICENSE.GPL oder LICENSE.BSD for further
details.
NOTICE - TRANSITION TO SCONS
The IoTivity build system is transitioning to SCONS. Although the
makefiles are still available (until v1.0) and some developers are
still using them, they are currently no longer supported. To learn more
about building using SCONS see Readme.scons.txt in the repository root
directory. The build steps used in continuous integration can be found
in auto_build.sh which is also in the the repository root directory.
BUILD STEPS FOR INTEL OC STACK
Use below command to build libcoap:
make all PLATFORM=linux
make all PLATFORM=android
|