Merge branch 'windows-port'
[platform/upstream/iotivity.git] / resource / csdk / stack / include / octypes.h
1 //******************************************************************
2 //
3 // Copyright 2014 Intel Mobile Communications GmbH All Rights Reserved.
4 //
5 //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
6 //
7 // Licensed under the Apache License, Version 2.0 (the "License");
8 // you may not use this file except in compliance with the License.
9 // You may obtain a copy of the License at
10 //
11 //      http://www.apache.org/licenses/LICENSE-2.0
12 //
13 // Unless required by applicable law or agreed to in writing, software
14 // distributed under the License is distributed on an "AS IS" BASIS,
15 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 // See the License for the specific language governing permissions and
17 // limitations under the License.
18 //
19 //******************************************************************
20
21
22 /**
23  * @file
24  *
25  * This file contains the definition, types and APIs for resource(s) be implemented.
26  */
27
28 #ifndef OCTYPES_H_
29 #define OCTYPES_H_
30
31 #include "platform_features.h"
32 #include "ocstackconfig.h"
33 #include <stdbool.h>
34 #include <stdint.h>
35 #include <stdio.h>
36 #ifdef __cplusplus
37 #include <string.h>
38
39 extern "C" {
40 #endif // __cplusplus
41
42 /** For the feature presence.*/
43 #define WITH_PRESENCE
44
45 #include "ocpresence.h"
46 //-----------------------------------------------------------------------------
47 // Defines
48 //-----------------------------------------------------------------------------
49
50 /**
51  * OIC Virtual resources supported by every OIC device.
52  */
53 /**
54  *  Default discovery mechanism using '/oic/res' is supported by all OIC devices
55  *  That are Discoverable.
56  */
57 #define OC_RSRVD_WELL_KNOWN_URI               "/oic/res"
58
59 /** Device URI.*/
60 #define OC_RSRVD_DEVICE_URI                   "/oic/d"
61
62 /** Platform URI.*/
63 #define OC_RSRVD_PLATFORM_URI                 "/oic/p"
64
65 /** Resource Type.*/
66 #define OC_RSRVD_RESOURCE_TYPES_URI           "/oic/res/types/d"
67 #if defined (ROUTING_GATEWAY) || defined (ROUTING_EP)
68 /** Gateway URI.*/
69 #define OC_RSRVD_GATEWAY_URI                  "/oic/gateway"
70 #endif
71 #ifdef WITH_PRESENCE
72
73 /** Presence URI through which the OIC devices advertise their presence.*/
74 #define OC_RSRVD_PRESENCE_URI                 "/oic/ad"
75
76 /** Sets the default time to live (TTL) for presence.*/
77 #define OC_DEFAULT_PRESENCE_TTL_SECONDS (60)
78
79 /** For multicast Discovery mechanism.*/
80 #define OC_MULTICAST_DISCOVERY_URI           "/oic/res"
81
82 /** Separator for multiple query string.*/
83 #define OC_QUERY_SEPARATOR                "&;"
84
85 /**
86  *  OC_DEFAULT_PRESENCE_TTL_SECONDS sets the default time to live (TTL) for presence.
87  */
88 #define OC_DEFAULT_PRESENCE_TTL_SECONDS (60)
89
90 /**
91  *  OC_MAX_PRESENCE_TTL_SECONDS sets the maximum time to live (TTL) for presence.
92  *  NOTE: Changing the setting to a longer duration may lead to unsupported and untested
93  *  operation.
94  *  60 sec/min * 60 min/hr * 24 hr/day
95  */
96 #define OC_MAX_PRESENCE_TTL_SECONDS     (60 * 60 * 24)
97 #endif
98
99 /**
100  *  Presence "Announcement Triggers".
101  */
102
103 /** To create.*/
104 #define OC_RSRVD_TRIGGER_CREATE         "create"
105
106 /** To change.*/
107 #define OC_RSRVD_TRIGGER_CHANGE         "change"
108
109 /** To delete.*/
110 #define OC_RSRVD_TRIGGER_DELETE         "delete"
111
112 /**
113  *  Attributes used to form a proper OIC conforming JSON message.
114  */
115
116 #define OC_RSRVD_OC                     "oic"
117
118 /** For payload. */
119
120 #define OC_RSRVD_PAYLOAD                "payload"
121
122 /** To represent href */
123 #define OC_RSRVD_HREF                   "href"
124
125 /** To represent property*/
126 #define OC_RSRVD_PROPERTY               "prop"
127
128 /** For representation.*/
129 #define OC_RSRVD_REPRESENTATION         "rep"
130
131 /** To represent content type.*/
132 #define OC_RSRVD_CONTENT_TYPE           "ct"
133
134 /** To represent resource type.*/
135 #define OC_RSRVD_RESOURCE_TYPE          "rt"
136
137 /** To represent resource type with presence.*/
138 #define OC_RSRVD_RESOURCE_TYPE_PRESENCE "oic.wk.ad"
139
140 /** To represent resource type with device.*/
141 #define OC_RSRVD_RESOURCE_TYPE_DEVICE   "oic.wk.d"
142
143 /** To represent resource type with platform.*/
144 #define OC_RSRVD_RESOURCE_TYPE_PLATFORM "oic.wk.p"
145
146 /** To represent resource type with RES.*/
147 #define OC_RSRVD_RESOURCE_TYPE_RES    "oic.wk.res"
148
149 /** To represent interface.*/
150 #define OC_RSRVD_INTERFACE              "if"
151
152 /** To represent time to live.*/
153 #define OC_RSRVD_TTL                    "ttl"
154
155 /** To represent non*/
156 #define OC_RSRVD_NONCE                  "non"
157
158 /** To represent trigger type.*/
159 #define OC_RSRVD_TRIGGER                "trg"
160
161 /** To represent links.*/
162 #define OC_RSRVD_LINKS                  "links"
163
164 /** To represent default interface.*/
165 #define OC_RSRVD_INTERFACE_DEFAULT      "oic.if.baseline"
166
167 /** To represent read-only interface.*/
168 #define OC_RSRVD_INTERFACE_READ         "oic.if.r"
169
170 /** To represent ll interface.*/
171 #define OC_RSRVD_INTERFACE_LL           "oic.if.ll"
172
173 /** To represent batch interface.*/
174 #define OC_RSRVD_INTERFACE_BATCH        "oic.if.b"
175
176 /** To represent interface group.*/
177 #define OC_RSRVD_INTERFACE_GROUP        "oic.mi.grp"
178
179 /** To represent MFG date.*/
180 #define OC_RSRVD_MFG_DATE               "mndt"
181
182 /** To represent FW version.*/
183 #define OC_RSRVD_FW_VERSION             "mnfv"
184
185 /** To represent host name.*/
186 #define OC_RSRVD_HOST_NAME              "hn"
187
188 /** To represent policy.*/
189 #define OC_RSRVD_POLICY                 "p"
190
191 /** To represent bitmap.*/
192 #define OC_RSRVD_BITMAP                 "bm"
193
194 /** For security.*/
195 #define OC_RSRVD_SECURE                 "sec"
196
197 /** Port. */
198 #define OC_RSRVD_HOSTING_PORT           "port"
199
200 /** TCP Port. */
201 #define OC_RSRVD_TCP_PORT               "tcp"
202
203 /** For Server instance ID.*/
204 #define OC_RSRVD_SERVER_INSTANCE_ID     "sid"
205
206 /**
207  *  Platform.
208  */
209
210 /** Platform ID. */
211 #define OC_RSRVD_PLATFORM_ID            "pi"
212
213 /** Platform MFG NAME. */
214 #define OC_RSRVD_MFG_NAME               "mnmn"
215
216 /** Platform URL. */
217 #define OC_RSRVD_MFG_URL                "mnml"
218
219 /** Model Number.*/
220 #define OC_RSRVD_MODEL_NUM              "mnmo"
221
222 /** Platform MFG Date.*/
223 #define OC_RSRVD_MFG_DATE               "mndt"
224
225 /** Platform versio.n */
226 #define OC_RSRVD_PLATFORM_VERSION       "mnpv"
227
228 /** Platform Operating system version. */
229 #define OC_RSRVD_OS_VERSION             "mnos"
230
231 /** Platform Hardware version. */
232 #define OC_RSRVD_HARDWARE_VERSION       "mnhw"
233
234 /**Platform Firmware version. */
235 #define OC_RSRVD_FIRMWARE_VERSION       "mnfv"
236
237 /** Support URL for the platform. */
238 #define OC_RSRVD_SUPPORT_URL            "mnsl"
239
240 /** System time for the platform. */
241 #define OC_RSRVD_SYSTEM_TIME             "st"
242
243 /**
244  *  Device.
245  */
246
247 /** Device ID.*/
248 #define OC_RSRVD_DEVICE_ID              "di"
249
250 /** Device Name.*/
251 #define OC_RSRVD_DEVICE_NAME            "n"
252
253 /** Device specification version.*/
254 #define OC_RSRVD_SPEC_VERSION           "icv"
255
256 /** Device data model.*/
257 #define OC_RSRVD_DATA_MODEL_VERSION     "dmv"
258
259 /** Device specification version.*/
260 #define OC_SPEC_VERSION                "core.1.0.0"
261
262 /** Device Data Model version.*/
263 #define OC_DATA_MODEL_VERSION          "res.1.0.0"
264
265 /**
266  *  These provide backward compatibility - their use is deprecated.
267  */
268 #ifndef GOING_AWAY
269
270 /** Multicast Prefix.*/
271 #define OC_MULTICAST_PREFIX                  "224.0.1.187:5683"
272
273 /** Multicast IP address.*/
274 #define OC_MULTICAST_IP                      "224.0.1.187"
275
276 /** Multicast Port.*/
277 #define OC_MULTICAST_PORT                    5683
278 #endif // GOING_AWAY
279
280 /** Max Device address size. */
281 #ifdef RA_ADAPTER
282 #define MAX_ADDR_STR_SIZE (256)
283 #else
284 /** Max Address could be
285  * "coap+tcp://[xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:yyy.yyy.yyy.yyy]:xxxxx"
286  * +1 for null terminator.
287  */
288 #define MAX_ADDR_STR_SIZE (65)
289 #endif
290
291 /** Length of MAC address */
292 #define MAC_ADDR_STR_SIZE (17)
293
294 /** Blocks of MAC address */
295 #define MAC_ADDR_BLOCKS (6)
296
297 /** Max identity size. */
298 #define MAX_IDENTITY_SIZE (32)
299
300 /** Universal unique identity size. */
301 #define UUID_IDENTITY_SIZE (128/8)
302
303 /** Resource Directory */
304
305 /** Resource Directory URI used to Discover RD and Publish resources.*/
306 #define OC_RSRVD_RD_URI                  "/oic/rd"
307
308 /** To represent resource type with rd.*/
309 #define OC_RSRVD_RESOURCE_TYPE_RD        "oic.wk.rd"
310
311 /** RD Discovery bias factor type. */
312 #define OC_RSRVD_RD_DISCOVERY_SEL        "sel"
313
314 /** Base URI. */
315 #define OC_RSRVD_BASE_URI                "baseURI"
316
317 /** Unique value per collection/link. */
318 #define OC_RSRVD_INS                     "ins"
319
320 /** Allowable resource types in the links. */
321 #define OC_RSRVD_RTS                     "rts"
322
323 /** Default relationship. */
324 #define OC_RSRVD_DREL                    "drel"
325
326 /** Defines relationship between links. */
327 #define OC_RSRVD_REL                     "rel"
328
329 /** Defines title. */
330 #define OC_RSRVD_TITLE                   "title"
331
332 /** Defines URI. */
333 #define OC_RSRVD_URI                     "uri"
334
335 /** Defines media type. */
336 #define OC_RSRVD_MEDIA_TYPE              "mt"
337
338 /** To represent resource type with Publish RD.*/
339 #define OC_RSRVD_RESOURCE_TYPE_RDPUBLISH "oic.wk.rdpub"
340
341 /**
342  * Mark a parameter as unused. Used to prevent unused variable compiler warnings.
343  * Used in three cases:
344  * 1. in callbacks when one of the parameters are unused
345  * 2. when due to code changes a functions parameter is no longer
346  *    used but must be left in place for backward compatibility
347  *    reasons.
348  * 3. a variable is only used in the debug build variant and would
349  *    give a build warning in release mode.
350  */
351 #define OC_UNUSED(x) (void)(x)
352
353 /**
354  * These enums (OCTransportAdapter and OCTransportFlags) must
355  * be kept synchronized with OCConnectivityType (below) as well as
356  * CATransportAdapter and CATransportFlags (in CACommon.h).
357  */
358 typedef enum
359 {
360     /** value zero indicates discovery.*/
361     OC_DEFAULT_ADAPTER = 0,
362
363     /** IPv4 and IPv6, including 6LoWPAN.*/
364     OC_ADAPTER_IP           = (1 << 0),
365
366     /** GATT over Bluetooth LE.*/
367     OC_ADAPTER_GATT_BTLE    = (1 << 1),
368
369     /** RFCOMM over Bluetooth EDR.*/
370     OC_ADAPTER_RFCOMM_BTEDR = (1 << 2),
371 #ifdef RA_ADAPTER
372     /**Remote Access over XMPP.*/
373     OC_ADAPTER_REMOTE_ACCESS = (1 << 3),
374 #endif
375     /** CoAP over TCP.*/
376     OC_ADAPTER_TCP           = (1 << 4),
377
378     /** NFC Transport for Messaging.*/
379     OC_ADAPTER_NFC           = (1 << 5)
380 } OCTransportAdapter;
381
382 /**
383  *  Enum layout assumes some targets have 16-bit integer (e.g., Arduino).
384  */
385 typedef enum
386 {
387     /** default flag is 0*/
388     OC_DEFAULT_FLAGS = 0,
389
390     /** Insecure transport is the default (subject to change).*/
391     /** secure the transport path*/
392     OC_FLAG_SECURE     = (1 << 4),
393
394     /** IPv4 & IPv6 auto-selection is the default.*/
395     /** IP & TCP adapter only.*/
396     OC_IP_USE_V6       = (1 << 5),
397
398     /** IP & TCP adapter only.*/
399     OC_IP_USE_V4       = (1 << 6),
400
401     /** internal use only.*/
402     OC_RESERVED1       = (1 << 7),   // internal use only
403
404     /** Link-Local multicast is the default multicast scope for IPv6.
405      *  These are placed here to correspond to the IPv6 multicast address bits.*/
406
407     /** IPv6 Interface-Local scope (loopback).*/
408     OC_SCOPE_INTERFACE = 0x1,
409
410     /** IPv6 Link-Local scope (default).*/
411     OC_SCOPE_LINK      = 0x2,
412
413     /** IPv6 Realm-Local scope. */
414     OC_SCOPE_REALM     = 0x3,
415
416     /** IPv6 Admin-Local scope. */
417     OC_SCOPE_ADMIN     = 0x4,
418
419     /** IPv6 Site-Local scope. */
420     OC_SCOPE_SITE      = 0x5,
421
422     /** IPv6 Organization-Local scope. */
423     OC_SCOPE_ORG       = 0x8,
424
425     /**IPv6 Global scope. */
426     OC_SCOPE_GLOBAL    = 0xE,
427
428 } OCTransportFlags;
429
430 /** Bit mask for scope.*/
431 #define OC_MASK_SCOPE    (0x000F)
432
433 /** Bit mask for Mods.*/
434 #define OC_MASK_MODS     (0x0FF0)
435 #define OC_MASK_FAMS     (OC_IP_USE_V6|OC_IP_USE_V4)
436
437 typedef struct OCStringLL
438 {
439     struct OCStringLL *next;
440     char* value;
441 } OCStringLL;
442
443 /**
444  * End point identity.
445  */
446 typedef struct
447 {
448     /** Identity Length */
449     uint16_t id_length;
450
451     /** Array of end point identity.*/
452     unsigned char id[MAX_IDENTITY_SIZE];
453 } OCIdentity;
454
455 /**
456  * Universally unique identifier.
457  */
458 typedef struct
459 {
460     /** identitifier string.*/
461     unsigned char id[UUID_IDENTITY_SIZE];
462 } OCUUIdentity;
463
464 /**
465  * Data structure to encapsulate IPv4/IPv6/Contiki/lwIP device addresses.
466  * OCDevAddr must be the same as CAEndpoint (in CACommon.h).
467  */
468 typedef struct
469 {
470     /** adapter type.*/
471     OCTransportAdapter      adapter;
472
473     /** transport modifiers.*/
474     OCTransportFlags        flags;
475
476     /** for IP.*/
477     uint16_t                port;
478
479     /** address for all adapters.*/
480     char                    addr[MAX_ADDR_STR_SIZE];
481
482     /** usually zero for default interface.*/
483     uint32_t                ifindex;
484 #if defined (ROUTING_GATEWAY) || defined (ROUTING_EP)
485     char                    routeData[MAX_ADDR_STR_SIZE]; //destination GatewayID:ClientId
486 #endif
487 } OCDevAddr;
488
489 /**
490  * This enum type includes elements of both ::OCTransportAdapter and ::OCTransportFlags.
491  * It is defined conditionally because the smaller definition limits expandability on 32/64 bit
492  * integer machines, and the larger definition won't fit into an enum on 16-bit integer machines
493  * like Arduino.
494  *
495  * This structure must directly correspond to ::OCTransportAdapter and ::OCTransportFlags.
496  */
497 typedef enum
498 {
499     /** use when defaults are ok. */
500     CT_DEFAULT = 0,
501
502     /** IPv4 and IPv6, including 6LoWPAN.*/
503     CT_ADAPTER_IP           = (1 << 16),
504
505     /** GATT over Bluetooth LE.*/
506     CT_ADAPTER_GATT_BTLE    = (1 << 17),
507
508     /** RFCOMM over Bluetooth EDR.*/
509     CT_ADAPTER_RFCOMM_BTEDR = (1 << 18),
510
511 #ifdef RA_ADAPTER
512     /** Remote Access over XMPP.*/
513     CT_ADAPTER_REMOTE_ACCESS = (1 << 19),
514 #endif
515     /** CoAP over TCP.*/
516     CT_ADAPTER_TCP     = (1 << 20),
517
518     /** NFC Transport.*/
519     CT_ADAPTER_NFC     = (1 << 21),
520
521     /** Insecure transport is the default (subject to change).*/
522
523     /** secure the transport path.*/
524     CT_FLAG_SECURE     = (1 << 4),
525
526     /** IPv4 & IPv6 autoselection is the default.*/
527
528     /** IP adapter only.*/
529     CT_IP_USE_V6       = (1 << 5),
530
531     /** IP adapter only.*/
532     CT_IP_USE_V4       = (1 << 6),
533
534     /** Link-Local multicast is the default multicast scope for IPv6.
535      * These are placed here to correspond to the IPv6 address bits.*/
536
537     /** IPv6 Interface-Local scope(loopback).*/
538     CT_SCOPE_INTERFACE = 0x1,
539
540     /** IPv6 Link-Local scope (default).*/
541     CT_SCOPE_LINK      = 0x2,
542
543     /** IPv6 Realm-Local scope.*/
544     CT_SCOPE_REALM     = 0x3,
545
546     /** IPv6 Admin-Local scope.*/
547     CT_SCOPE_ADMIN     = 0x4,
548
549     /** IPv6 Site-Local scope.*/
550     CT_SCOPE_SITE      = 0x5,
551
552     /** IPv6 Organization-Local scope.*/
553     CT_SCOPE_ORG       = 0x8,
554
555     /** IPv6 Global scope.*/
556     CT_SCOPE_GLOBAL    = 0xE,
557 } OCConnectivityType;
558
559 /** bit shift required for connectivity adapter.*/
560 #define CT_ADAPTER_SHIFT 16
561
562 /** Mask Flag.*/
563 #define CT_MASK_FLAGS 0xFFFF
564
565 /** Mask Adapter.*/
566 #define CT_MASK_ADAPTER 0xFFFF0000
567
568 /**
569  *  OCDoResource methods to dispatch the request
570  */
571 typedef enum
572 {
573     OC_REST_NOMETHOD       = 0,
574
575     /** Read.*/
576     OC_REST_GET            = (1 << 0),
577
578     /** Write.*/
579     OC_REST_PUT            = (1 << 1),
580
581     /** Update.*/
582     OC_REST_POST           = (1 << 2),
583
584     /** Delete.*/
585     OC_REST_DELETE         = (1 << 3),
586
587     /** Register observe request for most up date notifications ONLY.*/
588     OC_REST_OBSERVE        = (1 << 4),
589
590     /** Register observe request for all notifications, including stale notifications.*/
591     OC_REST_OBSERVE_ALL    = (1 << 5),
592
593     /** De-register observation, intended for internal use.*/
594     OC_REST_CANCEL_OBSERVE = (1 << 6),
595
596 #ifdef WITH_PRESENCE
597     /** Subscribe for all presence notifications of a particular resource.*/
598     OC_REST_PRESENCE       = (1 << 7),
599
600 #endif
601     /** Allows OCDoResource caller to do discovery.*/
602     OC_REST_DISCOVER       = (1 << 8)
603 } OCMethod;
604
605 /**
606  *  Formats for payload encoding.
607  */
608 typedef enum
609 {
610     OC_FORMAT_CBOR,
611     OC_FORMAT_UNDEFINED,
612     OC_FORMAT_UNSUPPORTED,
613 } OCPayloadFormat;
614
615 /**
616  * Host Mode of Operation.
617  */
618 typedef enum
619 {
620     OC_CLIENT = 0,
621     OC_SERVER,
622     OC_CLIENT_SERVER,
623     OC_GATEWAY          /**< Client server mode along with routing capabilities.*/
624 } OCMode;
625
626 /**
627  * Quality of Service attempts to abstract the guarantees provided by the underlying transport
628  * protocol. The precise definitions of each quality of service level depend on the
629  * implementation. In descriptions below are for the current implementation and may changed
630  * over time.
631  */
632 typedef enum
633 {
634     /** Packet delivery is best effort.*/
635     OC_LOW_QOS = 0,
636
637     /** Packet delivery is best effort.*/
638     OC_MEDIUM_QOS,
639
640     /** Acknowledgments are used to confirm delivery.*/
641     OC_HIGH_QOS,
642
643     /** No Quality is defined, let the stack decide.*/
644     OC_NA_QOS
645 } OCQualityOfService;
646
647 /**
648  * Resource Properties.
649  * The value of a policy property is defined as bitmap.
650  * The LSB represents OC_DISCOVERABLE and Second LSB bit represents OC_OBSERVABLE and so on.
651  * Not including the policy property is equivalent to zero.
652  *
653  */
654 typedef enum
655 {
656     /** When none of the bits are set, the resource is non-discoverable &
657      *  non-observable by the client.*/
658     OC_RES_PROP_NONE = (0),
659
660     /** When this bit is set, the resource is allowed to be discovered by clients.*/
661     OC_DISCOVERABLE  = (1 << 0),
662
663     /** When this bit is set, the resource is allowed to be observed by clients.*/
664     OC_OBSERVABLE    = (1 << 1),
665
666     /** When this bit is set, the resource is initialized, otherwise the resource
667      *  is 'inactive'. 'inactive' signifies that the resource has been marked for
668      *  deletion or is already deleted.*/
669     OC_ACTIVE        = (1 << 2),
670
671     /** When this bit is set, the resource has been marked as 'slow'.
672      * 'slow' signifies that responses from this resource can expect delays in
673      *  processing its requests from clients.*/
674     OC_SLOW          = (1 << 3),
675
676     /** When this bit is set, the resource is a secure resource.*/
677     OC_SECURE        = (1 << 4),
678
679     /** When this bit is set, the resource is allowed to be discovered only
680      *  if discovery request contains an explicit querystring.
681      *  Ex: GET /oic/res?rt=oic.sec.acl */
682     OC_EXPLICIT_DISCOVERABLE   = (1 << 5)
683 } OCResourceProperty;
684
685 /**
686  * Transport Protocol IDs.
687  */
688 typedef enum
689 {
690     /** For invalid ID.*/
691     OC_INVALID_ID   = (1 << 0),
692
693     /* For coap ID.*/
694     OC_COAP_ID      = (1 << 1)
695 } OCTransportProtocolID;
696
697 /**
698  * Declares Stack Results & Errors.
699  */
700 typedef enum
701 {
702     /** Success status code - START HERE.*/
703     OC_STACK_OK = 0,
704     OC_STACK_RESOURCE_CREATED,
705     OC_STACK_RESOURCE_DELETED,
706     OC_STACK_CONTINUE,
707     /** Success status code - END HERE.*/
708
709     /** Error status code - START HERE.*/
710     OC_STACK_INVALID_URI = 20,
711     OC_STACK_INVALID_QUERY,
712     OC_STACK_INVALID_IP,
713     OC_STACK_INVALID_PORT,
714     OC_STACK_INVALID_CALLBACK,
715     OC_STACK_INVALID_METHOD,
716
717     /** Invalid parameter.*/
718     OC_STACK_INVALID_PARAM,
719     OC_STACK_INVALID_OBSERVE_PARAM,
720     OC_STACK_NO_MEMORY,
721     OC_STACK_COMM_ERROR,
722     OC_STACK_TIMEOUT,
723     OC_STACK_ADAPTER_NOT_ENABLED,
724     OC_STACK_NOTIMPL,
725
726     /** Resource not found.*/
727     OC_STACK_NO_RESOURCE,
728
729     /** e.g: not supported method or interface.*/
730     OC_STACK_RESOURCE_ERROR,
731     OC_STACK_SLOW_RESOURCE,
732     OC_STACK_DUPLICATE_REQUEST,
733
734     /** Resource has no registered observers.*/
735     OC_STACK_NO_OBSERVERS,
736     OC_STACK_OBSERVER_NOT_FOUND,
737     OC_STACK_VIRTUAL_DO_NOT_HANDLE,
738     OC_STACK_INVALID_OPTION,
739
740     /** The remote reply contained malformed data.*/
741     OC_STACK_MALFORMED_RESPONSE,
742     OC_STACK_PERSISTENT_BUFFER_REQUIRED,
743     OC_STACK_INVALID_REQUEST_HANDLE,
744     OC_STACK_INVALID_DEVICE_INFO,
745     OC_STACK_INVALID_JSON,
746
747     /** Request is not authorized by Resource Server. */
748     OC_STACK_UNAUTHORIZED_REQ,
749     OC_STACK_TOO_LARGE_REQ,
750
751     /** Error code from PDM */
752     OC_STACK_PDM_IS_NOT_INITIALIZED,
753     OC_STACK_DUPLICATE_UUID,
754     OC_STACK_INCONSISTENT_DB,
755
756     /**
757      * Error code from OTM
758      * This error is pushed from DTLS interface when handshake failure happens
759      */
760     OC_STACK_AUTHENTICATION_FAILURE,
761
762     /** Insert all new error codes here!.*/
763 #ifdef WITH_PRESENCE
764     OC_STACK_PRESENCE_STOPPED = 128,
765     OC_STACK_PRESENCE_TIMEOUT,
766     OC_STACK_PRESENCE_DO_NOT_HANDLE,
767 #endif
768     /** ERROR in stack.*/
769     OC_STACK_ERROR = 255
770     /** Error status code - END HERE.*/
771 } OCStackResult;
772
773 /**
774  * Handle to an OCDoResource invocation.
775  */
776 typedef void * OCDoHandle;
777
778 /**
779  * Handle to an OCResource object owned by the OCStack.
780  */
781 typedef void * OCResourceHandle;
782
783 /**
784  * Handle to an OCRequest object owned by the OCStack.
785  */
786 typedef void * OCRequestHandle;
787
788 /**
789  * Unique identifier for each observation request. Used when observations are
790  * registered or de-registered. Used by entity handler to signal specific
791  * observers to be notified of resource changes.
792  * There can be maximum of 256 observations per server.
793  */
794 typedef uint8_t OCObservationId;
795
796 /**
797  * Action associated with observation.
798  */
799 typedef enum
800 {
801     /** To Register. */
802     OC_OBSERVE_REGISTER = 0,
803
804     /** To Deregister. */
805     OC_OBSERVE_DEREGISTER = 1,
806
807     /** Others. */
808     OC_OBSERVE_NO_OPTION = 2
809 } OCObserveAction;
810
811
812 /**
813  * Persistent storage handlers. An APP must provide OCPersistentStorage handler pointers
814  * when it calls OCRegisterPersistentStorageHandler.
815  * Persistent storage open handler points to default file path.
816  * It should check file path and whether the file is symbolic link or no.
817  * Application can point to appropriate SVR database path for it's IoTivity Server.
818  */
819 typedef struct {
820     /** Persistent storage file path.*/
821     FILE* (* open)(const char *path, const char *mode);
822
823     /** Persistent storage read handler.*/
824     size_t (* read)(void *ptr, size_t size, size_t nmemb, FILE *stream);
825
826     /** Persistent storage write handler.*/
827     size_t (* write)(const void *ptr, size_t size, size_t nmemb, FILE *stream);
828
829     /** Persistent storage close handler.*/
830     int (* close)(FILE *fp);
831
832     /** Persistent storage unlink handler.*/
833     int (* unlink)(const char *path);
834 } OCPersistentStorage;
835
836 /**
837  * Possible returned values from entity handler.
838  */
839 typedef struct
840 {
841     /** Action associated with observation request.*/
842     OCObserveAction action;
843
844     /** Identifier for observation being registered/deregistered.*/
845     OCObservationId obsId;
846 } OCObservationInfo;
847
848 /**
849  * Possible returned values from entity handler.
850  */
851 typedef enum
852 {
853     OC_EH_OK = 0,
854     OC_EH_ERROR,
855     OC_EH_RESOURCE_CREATED, // 2.01
856     OC_EH_RESOURCE_DELETED, // 2.02
857     OC_EH_SLOW, // 2.05
858     OC_EH_FORBIDDEN, // 4.03
859     OC_EH_RESOURCE_NOT_FOUND, // 4.04
860     OC_EH_VALID,   // 2.03
861     OC_EH_CHANGED, // 2.04
862     OC_EH_CONTENT, // 2.05
863     OC_EH_BAD_REQ, // 4.00
864     OC_EH_UNAUTHORIZED_REQ, // 4.01
865     OC_EH_BAD_OPT, // 4.02
866     OC_EH_METHOD_NOT_ALLOWED, // 4.05
867     OC_EH_NOT_ACCEPTABLE, // 4.06
868     OC_EH_INTERNAL_SERVER_ERROR, // 5.00
869     OC_EH_RETRANSMIT_TIMEOUT // 5.04
870 } OCEntityHandlerResult;
871
872 /**
873  * This structure will be used to define the vendor specific header options to be included
874  * in communication packets.
875  */
876 typedef struct OCHeaderOption
877 {
878     /** The protocol ID this option applies to.*/
879     OCTransportProtocolID protocolID;
880
881     /** The header option ID which will be added to communication packets.*/
882     uint16_t optionID;
883
884     /** its length 191.*/
885     uint16_t optionLength;
886
887     /** pointer to its data.*/
888     uint8_t optionData[MAX_HEADER_OPTION_DATA_LENGTH];
889
890 #ifdef SUPPORTS_DEFAULT_CTOR
891     OCHeaderOption() = default;
892     OCHeaderOption(OCTransportProtocolID pid,
893                    uint16_t optId,
894                    uint16_t optlen,
895                    const uint8_t* optData)
896         : protocolID(pid),
897           optionID(optId),
898           optionLength(optlen)
899     {
900
901         // parameter includes the null terminator.
902         optionLength = optionLength < MAX_HEADER_OPTION_DATA_LENGTH ?
903                         optionLength : MAX_HEADER_OPTION_DATA_LENGTH;
904         memcpy(optionData, optData, optionLength);
905         optionData[optionLength - 1] = '\0';
906     }
907 #endif
908 } OCHeaderOption;
909
910
911 /**
912  * This structure describes the platform properties. All non-Null properties will be
913  * included in a platform discovery request.
914  */
915 typedef struct
916 {
917     /** Platform ID.*/
918     char *platformID;
919
920     /** Manufacturer name.*/
921     char *manufacturerName;
922
923     /** Manufacturer URL for platform property.*/
924     char *manufacturerUrl;
925
926     /** Model number.*/
927     char *modelNumber;
928
929     /** Manufacturer date.*/
930     char *dateOfManufacture;
931
932     /** Platform version.*/
933     char *platformVersion;
934
935     /** Operating system version.*/
936     char *operatingSystemVersion;
937
938     /** HW version.*/
939     char *hardwareVersion;
940
941     /** FW version.*/
942     char *firmwareVersion;
943
944     /** Platform support URL.*/
945     char *supportUrl;
946
947     /** System time.*/
948     char *systemTime;
949
950 } OCPlatformInfo;
951
952 /**
953  * This structure is expected as input for device properties.
954  * device name is mandatory and expected from the application.
955  * device id of type UUID will be generated by the stack.
956  */
957 typedef struct
958 {
959     /** Pointer to the device name.*/
960     char *deviceName;
961     /** Pointer to the types.*/
962     OCStringLL *types;
963     /** Pointer to the device specification version.*/
964     char *specVersion;
965     /** Pointer to the device data model versions (in CSV format).*/
966     OCStringLL *dataModelVersions;
967 } OCDeviceInfo;
968
969 #ifdef RA_ADAPTER
970 /**
971  * callback for bound JID
972  */
973 typedef void (*jid_bound_cb)(char *jid);
974
975 /**
976  * CA Remote Access information for XMPP Client
977  *
978  */
979 typedef struct
980 {
981     char *hostname;     /**< XMPP server hostname */
982     uint16_t   port;    /**< XMPP server serivce port */
983     char *xmpp_domain;  /**< XMPP login domain */
984     char *username;     /**< login username */
985     char *password;     /**< login password */
986     char *resource;     /**< specific resource for login */
987     char *user_jid;     /**< specific JID for login */
988     jid_bound_cb jidbound;  /**< callback when JID bound */
989 } OCRAInfo_t;
990 #endif  /* RA_ADAPTER */
991
992
993 /** Enum to describe the type of object held by the OCPayload object.*/
994 typedef enum
995 {
996     /** Contents of the payload are invalid */
997     PAYLOAD_TYPE_INVALID,
998     /** The payload is an OCDiscoveryPayload */
999     PAYLOAD_TYPE_DISCOVERY,
1000     /** The payload is an OCDevicePayload */
1001     PAYLOAD_TYPE_DEVICE,
1002     /** The payload is an OCPlatformPayload */
1003     PAYLOAD_TYPE_PLATFORM,
1004     /** The payload is an OCRepPayload */
1005     PAYLOAD_TYPE_REPRESENTATION,
1006     /** The payload is an OCSecurityPayload */
1007     PAYLOAD_TYPE_SECURITY,
1008     /** The payload is an OCPresencePayload */
1009     PAYLOAD_TYPE_PRESENCE,
1010     /** The payload is an OCRDPayload */
1011     PAYLOAD_TYPE_RD
1012 } OCPayloadType;
1013
1014 /**
1015  * A generic struct representing a payload returned from a resource operation
1016  *
1017  * A pointer to OCPayLoad can be cast to a more specific struct to access members
1018  * for the its type.
1019  */
1020 typedef struct
1021 {
1022     /** The type of message that was received */
1023     OCPayloadType type;
1024 } OCPayload;
1025
1026 typedef enum
1027 {
1028     OCREP_PROP_NULL,
1029     OCREP_PROP_INT,
1030     OCREP_PROP_DOUBLE,
1031     OCREP_PROP_BOOL,
1032     OCREP_PROP_STRING,
1033     OCREP_PROP_BYTE_STRING,
1034     OCREP_PROP_OBJECT,
1035     OCREP_PROP_ARRAY
1036 }OCRepPayloadPropType;
1037
1038 /** This structure will be used to represent a binary string for CBOR payloads.*/
1039 typedef struct
1040 {
1041     /** pointer to data bytes.*/
1042     uint8_t* bytes;
1043
1044     /** number of data bytes.*/
1045     size_t   len;
1046 } OCByteString;
1047
1048 #define MAX_REP_ARRAY_DEPTH 3
1049 typedef struct
1050 {
1051     OCRepPayloadPropType type;
1052     size_t dimensions[MAX_REP_ARRAY_DEPTH];
1053
1054     union
1055     {
1056         int64_t* iArray;
1057         double* dArray;
1058         bool* bArray;
1059         char** strArray;
1060
1061         /** pointer to ByteString array.*/
1062         OCByteString* ocByteStrArray;
1063
1064         struct OCRepPayload** objArray;
1065     };
1066 } OCRepPayloadValueArray;
1067
1068 typedef struct OCRepPayloadValue
1069 {
1070     char* name;
1071     OCRepPayloadPropType type;
1072     union
1073     {
1074         int64_t i;
1075         double d;
1076         bool b;
1077         char* str;
1078
1079         /** ByteString object.*/
1080         OCByteString ocByteStr;
1081
1082         struct OCRepPayload* obj;
1083         OCRepPayloadValueArray arr;
1084     };
1085     struct OCRepPayloadValue* next;
1086
1087 } OCRepPayloadValue;
1088
1089 // used for get/set/put/observe/etc representations
1090 typedef struct OCRepPayload
1091 {
1092     OCPayload base;
1093     char* uri;
1094     OCStringLL* types;
1095     OCStringLL* interfaces;
1096     OCRepPayloadValue* values;
1097     struct OCRepPayload* next;
1098 } OCRepPayload;
1099
1100 // used inside a discovery payload
1101 typedef struct OCResourcePayload
1102 {
1103     char* uri;
1104     OCStringLL* types;
1105     OCStringLL* interfaces;
1106     uint8_t bitmap;
1107     bool secure;
1108     uint16_t port;
1109 #ifdef TCP_ADAPTER
1110     uint16_t tcpPort;
1111 #endif
1112     struct OCResourcePayload* next;
1113 } OCResourcePayload;
1114
1115 /**
1116  * Structure holding Links Payload. It is a sub-structure used in
1117  * OCResourceCollectionPayload.
1118  */
1119 typedef struct OCLinksPayload
1120 {
1121     /** This is the target relative URI. */
1122     char *href;
1123     /** Resource Type - A standard OIC specified or vendor defined resource
1124      * type of the resource referenced by the target URI. */
1125     OCStringLL *rt;
1126     /** Interface - The interfaces supported by the resource referenced by the target URI. */
1127     OCStringLL *itf;
1128     /** The relation of the target URI referenced by the link to the context URI;
1129      * The default value is null. */
1130     char *rel;
1131     /** Specifies if the resource referenced by the target URIis observable or not. */
1132     bool obs;
1133     /** A title for the link relation. Can be used by the UI to provide a context. */
1134     char *title;
1135     /** This is used to override the context URI e.g. override the URI of the containing collection. */
1136     char *uri;
1137     /** The instance identifier for this web link in an array of web links - used in links. */
1138     union
1139     {
1140         /** An ordinal number that is not repeated - must be unique in the collection context. */
1141         uint8_t ins;
1142         /** Any unique string including a URI. */
1143         char *uniqueStr;
1144         /** Use UUID for universal uniqueness - used in /oic/res to identify the device. */
1145         OCIdentity uniqueUUID;
1146     };
1147     /** A hint of the media type of the representation of the resource referenced by the target URI. */
1148     OCStringLL *mt;
1149     /** Holding address of the next resource. */
1150     struct OCLinksPayload *next;
1151 } OCLinksPayload;
1152
1153 /** Structure holding tags value of the links payload. */
1154 typedef struct
1155 {
1156     /** Name of tags. */
1157     OCDeviceInfo n;
1158     /** Device identifier. */
1159     OCIdentity di;
1160     /** The base URI where the resources are hold. */
1161     char *baseURI;
1162     /** Bitmap holds observable, discoverable, secure option flag.*/
1163     uint8_t bitmap;
1164     /** Port set in case, the secure flag is set above. */
1165     uint16_t port;
1166     /** Id for each set of links i.e. tag. */
1167     union
1168     {
1169         /** An ordinal number that is not repeated - must be unique in the collection context. */
1170         uint8_t ins;
1171         /** Any unique string including a URI. */
1172         char *uniqueStr;
1173         /** Use UUID for universal uniqueness - used in /oic/res to identify the device. */
1174         OCIdentity uniqueUUID;
1175     };
1176     /** Defines the list of allowable resource types (for Target and anchors) in links included
1177      * in the collection; new links being created can only be from this list. */
1178     char *rts;
1179     /** When specified this is the default relationship to use when an OIC Link does not specify
1180      * an explicit relationship with *rel* parameter. */
1181     char *drel;
1182     /** Time to keep holding resource.*/
1183     uint32_t ttl;
1184 } OCTagsPayload;
1185
1186 /** Resource collection payload. */
1187 typedef struct OCResourceCollectionPayload
1188 {
1189     /** Collection tags payload.*/
1190     OCTagsPayload *tags;
1191     /** Array of links payload. */
1192     OCLinksPayload *setLinks;
1193     /** Holding address of the next resource. */
1194     struct OCResourceCollectionPayload *next;
1195 } OCResourceCollectionPayload;
1196
1197 typedef struct
1198 {
1199     OCPayload base;
1200
1201     /** Device Id */
1202     char *sid;
1203
1204     /** A special case for handling RD address. */
1205     char* baseURI;
1206
1207     /** Name */
1208     char *name;
1209
1210     /** HREF */
1211     char *uri;
1212
1213     /** Resource Type */
1214     OCStringLL *type;
1215
1216     /** Interface */
1217     OCStringLL *iface;
1218
1219     /** This structure holds the old /oic/res response. */
1220     OCResourcePayload *resources;
1221
1222 } OCDiscoveryPayload;
1223
1224 /**
1225  * Structure holding discovery payload.
1226  */
1227 typedef struct
1228 {
1229     /** Device Name. */
1230     OCDeviceInfo n;
1231     /** Device Identity. */
1232     OCIdentity di;
1233     /** Value holding the bias factor of the RD. */
1234     uint8_t sel;
1235 } OCRDDiscoveryPayload;
1236
1237 /**
1238  * RD Payload that will be transmitted over the wire.
1239  */
1240 typedef struct
1241 {
1242     OCPayload base;
1243     /** Pointer to the discovery response payload.*/
1244     OCRDDiscoveryPayload *rdDiscovery;
1245     /** Pointer to the publish payload.*/
1246     OCResourceCollectionPayload *rdPublish;
1247 } OCRDPayload;
1248
1249 typedef struct
1250 {
1251     OCPayload base;
1252     char *sid;
1253     char* deviceName;
1254     char* specVersion;
1255     OCStringLL *dataModelVersions;
1256     OCStringLL *interfaces;
1257     OCStringLL *types;
1258 } OCDevicePayload;
1259
1260 typedef struct
1261 {
1262     OCPayload base;
1263     char* uri;
1264     OCPlatformInfo info;
1265     OCStringLL* rt;
1266     OCStringLL* interfaces;
1267 } OCPlatformPayload;
1268
1269 typedef struct
1270 {
1271     OCPayload base;
1272     uint8_t* securityData;
1273     size_t payloadSize;
1274 } OCSecurityPayload;
1275
1276 #ifdef WITH_PRESENCE
1277 typedef struct
1278 {
1279     OCPayload base;
1280     uint32_t sequenceNumber;
1281     uint32_t maxAge;
1282     OCPresenceTrigger trigger;
1283     char* resourceType;
1284 } OCPresencePayload;
1285 #endif
1286
1287 /**
1288  * Incoming requests handled by the server. Requests are passed in as a parameter to the
1289  * OCEntityHandler callback API.
1290  * The OCEntityHandler callback API must be implemented in the application in order
1291  * to receive these requests.
1292  */
1293 typedef struct
1294 {
1295     /** Associated resource.*/
1296     OCResourceHandle resource;
1297
1298     /** Associated request handle.*/
1299     OCRequestHandle requestHandle;
1300
1301     /** the REST method retrieved from received request PDU.*/
1302     OCMethod method;
1303
1304     /** description of endpoint that sent the request.*/
1305     OCDevAddr devAddr;
1306
1307     /** resource query send by client.*/
1308     char * query;
1309
1310     /** Information associated with observation - valid only when OCEntityHandler flag includes
1311      * ::OC_OBSERVE_FLAG.*/
1312     OCObservationInfo obsInfo;
1313
1314     /** Number of the received vendor specific header options.*/
1315     uint8_t numRcvdVendorSpecificHeaderOptions;
1316
1317     /** Pointer to the array of the received vendor specific header options.*/
1318     OCHeaderOption * rcvdVendorSpecificHeaderOptions;
1319
1320     /** Message id.*/
1321     uint16_t messageID;
1322
1323     /** the payload from the request PDU.*/
1324     OCPayload *payload;
1325
1326 } OCEntityHandlerRequest;
1327
1328
1329 /**
1330  * Response from queries to remote servers. Queries are made by calling the OCDoResource API.
1331  */
1332 typedef struct
1333 {
1334     /** Address of remote server.*/
1335     OCDevAddr devAddr;
1336
1337     /** backward compatibility (points to devAddr).*/
1338     OCDevAddr *addr;
1339
1340     /** backward compatibility.*/
1341     OCConnectivityType connType;
1342
1343     /** the security identity of the remote server.*/
1344     OCIdentity identity;
1345
1346     /** the is the result of our stack, OCStackResult should contain coap/other error codes.*/
1347     OCStackResult result;
1348
1349     /** If associated with observe, this will represent the sequence of notifications from server.*/
1350     uint32_t sequenceNumber;
1351
1352     /** resourceURI.*/
1353     const char * resourceUri;
1354
1355     /** the payload for the response PDU.*/
1356     OCPayload *payload;
1357
1358     /** Number of the received vendor specific header options.*/
1359     uint8_t numRcvdVendorSpecificHeaderOptions;
1360
1361     /** An array of the received vendor specific header options.*/
1362     OCHeaderOption rcvdVendorSpecificHeaderOptions[MAX_HEADER_OPTIONS];
1363 } OCClientResponse;
1364
1365 /**
1366  * Request handle is passed to server via the entity handler for each incoming request.
1367  * Stack assigns when request is received, server sets to indicate what request response is for.
1368  */
1369 typedef struct
1370 {
1371     /** Request handle.*/
1372     OCRequestHandle requestHandle;
1373
1374     /** Resource handle.*/
1375     OCResourceHandle resourceHandle;
1376
1377     /** Allow the entity handler to pass a result with the response.*/
1378     OCEntityHandlerResult  ehResult;
1379
1380     /** This is the pointer to server payload data to be transferred.*/
1381     OCPayload* payload;
1382
1383     /** number of the vendor specific header options .*/
1384     uint8_t numSendVendorSpecificHeaderOptions;
1385
1386     /** An array of the vendor specific header options the entity handler wishes to use in response.*/
1387     OCHeaderOption sendVendorSpecificHeaderOptions[MAX_HEADER_OPTIONS];
1388
1389     /** URI of new resource that entity handler might create.*/
1390     char resourceUri[MAX_URI_LENGTH];
1391
1392     /** Server sets to true for persistent response buffer,false for non-persistent response buffer*/
1393     uint8_t persistentBufferFlag;
1394 } OCEntityHandlerResponse;
1395
1396 /**
1397  * Entity's state
1398  */
1399 typedef enum
1400 {
1401     /** Request state.*/
1402     OC_REQUEST_FLAG = (1 << 1),
1403     /** Observe state.*/
1404     OC_OBSERVE_FLAG = (1 << 2)
1405 } OCEntityHandlerFlag;
1406
1407 /**
1408  * Possible return values from client application callback
1409  *
1410  * A client application callback returns an OCStackApplicationResult to indicate whether
1411  * the stack should continue to keep the callback registered.
1412  */
1413 typedef enum
1414 {
1415     /** Make no more calls to the callback and call the OCClientContextDeleter for this callback */
1416     OC_STACK_DELETE_TRANSACTION = 0,
1417     /** Keep this callback registered and call it if an apropriate event occurs */
1418     OC_STACK_KEEP_TRANSACTION
1419 } OCStackApplicationResult;
1420
1421
1422 //#ifdef DIRECT_PAIRING
1423 /**
1424  * @brief   direct pairing Method Type.
1425  *              0:  not allowed
1426  *              1:  pre-configured pin
1427  *              2:  random pin
1428  */
1429 typedef enum OCPrm
1430 {
1431     DP_NOT_ALLOWED             = 0x0,
1432     DP_PRE_CONFIGURED        = (0x1 << 0),
1433     DP_RANDOM_PIN               = (0x1 << 1),
1434 } OCPrm_t;
1435
1436 /**
1437  * Device Information of discoverd direct pairing device(s).
1438  */
1439 typedef struct OCDPDev
1440 {
1441     OCDevAddr               endpoint;
1442     OCConnectivityType   connType;
1443     uint16_t                     securePort;
1444     bool                  edp;
1445     OCPrm_t           *prm;
1446     size_t                prmLen;
1447     OCUUIdentity     deviceID;
1448     OCUUIdentity     rowner;
1449     struct OCDPDev *next;
1450 } OCDPDev_t;
1451 //#endif // DIRECT_PAIRING
1452
1453 /*
1454  * -------------------------------------------------------------------------------------------
1455  * Callback function definitions
1456  * -------------------------------------------------------------------------------------------
1457  */
1458
1459 /**
1460  * Client applications implement this callback to consume responses received from Servers.
1461  */
1462 typedef OCStackApplicationResult (* OCClientResponseHandler)(void *context, OCDoHandle handle,
1463     OCClientResponse * clientResponse);
1464
1465 /**
1466  * Client applications using a context pointer implement this callback to delete the
1467  * context upon removal of the callback/context pointer from the internal callback-list.
1468  */
1469 typedef void (* OCClientContextDeleter)(void *context);
1470
1471 /**
1472  * This info is passed from application to OC Stack when initiating a request to Server.
1473  */
1474 typedef struct OCCallbackData
1475 {
1476     /** Pointer to the context.*/
1477     void *context;
1478
1479     /** The pointer to a function the stack will call to handle the requests.*/
1480     OCClientResponseHandler cb;
1481
1482     /** A pointer to a function to delete the context when this callback is removed.*/
1483     OCClientContextDeleter cd;
1484
1485 #ifdef SUPPORTS_DEFAULT_CTOR
1486     OCCallbackData() = default;
1487     OCCallbackData(void* ctx, OCClientResponseHandler callback, OCClientContextDeleter deleter)
1488         :context(ctx), cb(callback), cd(deleter){}
1489 #endif
1490 } OCCallbackData;
1491
1492 /**
1493  * Application server implementations must implement this callback to consume requests OTA.
1494  * Entity handler callback needs to fill the resPayload of the entityHandlerRequest.
1495  */
1496 typedef OCEntityHandlerResult (*OCEntityHandler)
1497 (OCEntityHandlerFlag flag, OCEntityHandlerRequest * entityHandlerRequest, void* callbackParam);
1498
1499 /**
1500  * Device Entity handler need to use this call back instead of OCEntityHandler.
1501  */
1502 typedef OCEntityHandlerResult (*OCDeviceEntityHandler)
1503 (OCEntityHandlerFlag flag, OCEntityHandlerRequest * entityHandlerRequest, char* uri, void* callbackParam);
1504
1505 //#ifdef DIRECT_PAIRING
1506 /**
1507  * Callback function definition of direct-pairing
1508  *
1509  * @param[OUT] ctx - user context returned in the callback.
1510  * @param[OUT] peer - pairing device info.
1511  * @param[OUT} result - It's returned with 'OC_STACK_XXX'. It will return 'OC_STACK_OK'
1512  *                                   if D2D pairing is success without error
1513  */
1514 typedef void (*OCDirectPairingCB)(void *ctx, OCDPDev_t *peer, OCStackResult result);
1515 //#endif // DIRECT_PAIRING
1516
1517 #ifdef __cplusplus
1518 }
1519 #endif // __cplusplus
1520
1521 #endif /* OCTYPES_H_ */