[Win32] Add win32-specific networking APIs
[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
750     /** Error code from PDM */
751     OC_STACK_PDM_IS_NOT_INITIALIZED,
752     OC_STACK_DUPLICATE_UUID,
753     OC_STACK_INCONSISTENT_DB,
754
755     /**
756      * Error code from OTM
757      * This error is pushed from DTLS interface when handshake failure happens
758      */
759     OC_STACK_AUTHENTICATION_FAILURE,
760
761     /** Insert all new error codes here!.*/
762 #ifdef WITH_PRESENCE
763     OC_STACK_PRESENCE_STOPPED = 128,
764     OC_STACK_PRESENCE_TIMEOUT,
765     OC_STACK_PRESENCE_DO_NOT_HANDLE,
766 #endif
767     /** ERROR in stack.*/
768     OC_STACK_ERROR = 255
769     /** Error status code - END HERE.*/
770 } OCStackResult;
771
772 /**
773  * Handle to an OCDoResource invocation.
774  */
775 typedef void * OCDoHandle;
776
777 /**
778  * Handle to an OCResource object owned by the OCStack.
779  */
780 typedef void * OCResourceHandle;
781
782 /**
783  * Handle to an OCRequest object owned by the OCStack.
784  */
785 typedef void * OCRequestHandle;
786
787 /**
788  * Unique identifier for each observation request. Used when observations are
789  * registered or de-registered. Used by entity handler to signal specific
790  * observers to be notified of resource changes.
791  * There can be maximum of 256 observations per server.
792  */
793 typedef uint8_t OCObservationId;
794
795 /**
796  * Action associated with observation.
797  */
798 typedef enum
799 {
800     /** To Register. */
801     OC_OBSERVE_REGISTER = 0,
802
803     /** To Deregister. */
804     OC_OBSERVE_DEREGISTER = 1,
805
806     /** Others. */
807     OC_OBSERVE_NO_OPTION = 2
808 } OCObserveAction;
809
810
811 /**
812  * Persistent storage handlers. An APP must provide OCPersistentStorage handler pointers
813  * when it calls OCRegisterPersistentStorageHandler.
814  * Persistent storage open handler points to default file path.
815  * It should check file path and whether the file is symbolic link or no.
816  * Application can point to appropriate SVR database path for it's IoTivity Server.
817  */
818 typedef struct {
819     /** Persistent storage file path.*/
820     FILE* (* open)(const char *path, const char *mode);
821
822     /** Persistent storage read handler.*/
823     size_t (* read)(void *ptr, size_t size, size_t nmemb, FILE *stream);
824
825     /** Persistent storage write handler.*/
826     size_t (* write)(const void *ptr, size_t size, size_t nmemb, FILE *stream);
827
828     /** Persistent storage close handler.*/
829     int (* close)(FILE *fp);
830
831     /** Persistent storage unlink handler.*/
832     int (* unlink)(const char *path);
833 } OCPersistentStorage;
834
835 /**
836  * Possible returned values from entity handler.
837  */
838 typedef struct
839 {
840     /** Action associated with observation request.*/
841     OCObserveAction action;
842
843     /** Identifier for observation being registered/deregistered.*/
844     OCObservationId obsId;
845 } OCObservationInfo;
846
847 /**
848  * Possible returned values from entity handler.
849  */
850 typedef enum
851 {
852     OC_EH_OK = 0,
853     OC_EH_ERROR,
854     OC_EH_RESOURCE_CREATED,
855     OC_EH_RESOURCE_DELETED,
856     OC_EH_SLOW,
857     OC_EH_FORBIDDEN,
858     OC_EH_RESOURCE_NOT_FOUND
859 } OCEntityHandlerResult;
860
861 /**
862  * This structure will be used to define the vendor specific header options to be included
863  * in communication packets.
864  */
865 typedef struct OCHeaderOption
866 {
867     /** The protocol ID this option applies to.*/
868     OCTransportProtocolID protocolID;
869
870     /** The header option ID which will be added to communication packets.*/
871     uint16_t optionID;
872
873     /** its length 191.*/
874     uint16_t optionLength;
875
876     /** pointer to its data.*/
877     uint8_t optionData[MAX_HEADER_OPTION_DATA_LENGTH];
878
879 #ifdef SUPPORTS_DEFAULT_CTOR
880     OCHeaderOption() = default;
881     OCHeaderOption(OCTransportProtocolID pid,
882                    uint16_t optId,
883                    uint16_t optlen,
884                    const uint8_t* optData)
885         : protocolID(pid),
886           optionID(optId),
887           optionLength(optlen)
888     {
889
890         // parameter includes the null terminator.
891         optionLength = optionLength < MAX_HEADER_OPTION_DATA_LENGTH ?
892                         optionLength : MAX_HEADER_OPTION_DATA_LENGTH;
893         memcpy(optionData, optData, optionLength);
894         optionData[optionLength - 1] = '\0';
895     }
896 #endif
897 } OCHeaderOption;
898
899
900 /**
901  * This structure describes the platform properties. All non-Null properties will be
902  * included in a platform discovery request.
903  */
904 typedef struct
905 {
906     /** Platform ID.*/
907     char *platformID;
908
909     /** Manufacturer name.*/
910     char *manufacturerName;
911
912     /** Manufacturer URL for platform property.*/
913     char *manufacturerUrl;
914
915     /** Model number.*/
916     char *modelNumber;
917
918     /** Manufacturer date.*/
919     char *dateOfManufacture;
920
921     /** Platform version.*/
922     char *platformVersion;
923
924     /** Operating system version.*/
925     char *operatingSystemVersion;
926
927     /** HW version.*/
928     char *hardwareVersion;
929
930     /** FW version.*/
931     char *firmwareVersion;
932
933     /** Platform support URL.*/
934     char *supportUrl;
935
936     /** System time.*/
937     char *systemTime;
938
939 } OCPlatformInfo;
940
941 /**
942  * This structure is expected as input for device properties.
943  * device name is mandatory and expected from the application.
944  * device id of type UUID will be generated by the stack.
945  */
946 typedef struct
947 {
948     /** Pointer to the device name.*/
949     char *deviceName;
950     /** Pointer to the types.*/
951     OCStringLL *types;
952 } OCDeviceInfo;
953
954 #ifdef RA_ADAPTER
955 /**
956  * callback for bound JID
957  */
958 typedef void (*jid_bound_cb)(char *jid);
959
960 /**
961  * CA Remote Access information for XMPP Client
962  *
963  */
964 typedef struct
965 {
966     char *hostname;     /**< XMPP server hostname */
967     uint16_t   port;    /**< XMPP server serivce port */
968     char *xmpp_domain;  /**< XMPP login domain */
969     char *username;     /**< login username */
970     char *password;     /**< login password */
971     char *resource;     /**< specific resource for login */
972     char *user_jid;     /**< specific JID for login */
973     jid_bound_cb jidbound;  /**< callback when JID bound */
974 } OCRAInfo_t;
975 #endif  /* RA_ADAPTER */
976
977
978 /** Enum to describe the type of object held by the OCPayload object.*/
979 typedef enum
980 {
981     /** Contents of the payload are invalid */
982     PAYLOAD_TYPE_INVALID,
983     /** The payload is an OCDiscoveryPayload */
984     PAYLOAD_TYPE_DISCOVERY,
985     /** The payload is an OCDevicePayload */
986     PAYLOAD_TYPE_DEVICE,
987     /** The payload is an OCPlatformPayload */
988     PAYLOAD_TYPE_PLATFORM,
989     /** The payload is an OCRepPayload */
990     PAYLOAD_TYPE_REPRESENTATION,
991     /** The payload is an OCSecurityPayload */
992     PAYLOAD_TYPE_SECURITY,
993     /** The payload is an OCPresencePayload */
994     PAYLOAD_TYPE_PRESENCE,
995     /** The payload is an OCRDPayload */
996     PAYLOAD_TYPE_RD
997 } OCPayloadType;
998
999 /**
1000  * A generic struct representing a payload returned from a resource operation
1001  *
1002  * A pointer to OCPayLoad can be cast to a more specific struct to access members
1003  * for the its type.
1004  */
1005 typedef struct
1006 {
1007     /** The type of message that was received */
1008     OCPayloadType type;
1009 } OCPayload;
1010
1011 typedef enum
1012 {
1013     OCREP_PROP_NULL,
1014     OCREP_PROP_INT,
1015     OCREP_PROP_DOUBLE,
1016     OCREP_PROP_BOOL,
1017     OCREP_PROP_STRING,
1018     OCREP_PROP_BYTE_STRING,
1019     OCREP_PROP_OBJECT,
1020     OCREP_PROP_ARRAY
1021 }OCRepPayloadPropType;
1022
1023 /** This structure will be used to represent a binary string for CBOR payloads.*/
1024 typedef struct
1025 {
1026     /** pointer to data bytes.*/
1027     uint8_t* bytes;
1028
1029     /** number of data bytes.*/
1030     size_t   len;
1031 } OCByteString;
1032
1033 #define MAX_REP_ARRAY_DEPTH 3
1034 typedef struct
1035 {
1036     OCRepPayloadPropType type;
1037     size_t dimensions[MAX_REP_ARRAY_DEPTH];
1038
1039     union
1040     {
1041         int64_t* iArray;
1042         double* dArray;
1043         bool* bArray;
1044         char** strArray;
1045
1046         /** pointer to ByteString array.*/
1047         OCByteString* ocByteStrArray;
1048
1049         struct OCRepPayload** objArray;
1050     };
1051 } OCRepPayloadValueArray;
1052
1053 typedef struct OCRepPayloadValue
1054 {
1055     char* name;
1056     OCRepPayloadPropType type;
1057     union
1058     {
1059         int64_t i;
1060         double d;
1061         bool b;
1062         char* str;
1063
1064         /** ByteString object.*/
1065         OCByteString ocByteStr;
1066
1067         struct OCRepPayload* obj;
1068         OCRepPayloadValueArray arr;
1069     };
1070     struct OCRepPayloadValue* next;
1071
1072 } OCRepPayloadValue;
1073
1074 // used for get/set/put/observe/etc representations
1075 typedef struct OCRepPayload
1076 {
1077     OCPayload base;
1078     char* uri;
1079     OCStringLL* types;
1080     OCStringLL* interfaces;
1081     OCRepPayloadValue* values;
1082     struct OCRepPayload* next;
1083 } OCRepPayload;
1084
1085 // used inside a discovery payload
1086 typedef struct OCResourcePayload
1087 {
1088     char* uri;
1089     OCStringLL* types;
1090     OCStringLL* interfaces;
1091     uint8_t bitmap;
1092     bool secure;
1093     uint16_t port;
1094 #ifdef TCP_ADAPTER
1095     uint16_t tcpPort;
1096 #endif
1097     struct OCResourcePayload* next;
1098 } OCResourcePayload;
1099
1100 /**
1101  * Structure holding Links Payload. It is a sub-structure used in
1102  * OCResourceCollectionPayload.
1103  */
1104 typedef struct OCLinksPayload
1105 {
1106     /** This is the target relative URI. */
1107     char *href;
1108     /** Resource Type - A standard OIC specified or vendor defined resource
1109      * type of the resource referenced by the target URI. */
1110     OCStringLL *rt;
1111     /** Interface - The interfaces supported by the resource referenced by the target URI. */
1112     OCStringLL *itf;
1113     /** The relation of the target URI referenced by the link to the context URI;
1114      * The default value is null. */
1115     char *rel;
1116     /** Specifies if the resource referenced by the target URIis observable or not. */
1117     bool obs;
1118     /** A title for the link relation. Can be used by the UI to provide a context. */
1119     char *title;
1120     /** This is used to override the context URI e.g. override the URI of the containing collection. */
1121     char *uri;
1122     /** The instance identifier for this web link in an array of web links - used in links. */
1123     union
1124     {
1125         /** An ordinal number that is not repeated - must be unique in the collection context. */
1126         uint8_t ins;
1127         /** Any unique string including a URI. */
1128         char *uniqueStr;
1129         /** Use UUID for universal uniqueness - used in /oic/res to identify the device. */
1130         OCIdentity uniqueUUID;
1131     };
1132     /** A hint of the media type of the representation of the resource referenced by the target URI. */
1133     OCStringLL *mt;
1134     /** Holding address of the next resource. */
1135     struct OCLinksPayload *next;
1136 } OCLinksPayload;
1137
1138 /** Structure holding tags value of the links payload. */
1139 typedef struct
1140 {
1141     /** Name of tags. */
1142     OCDeviceInfo n;
1143     /** Device identifier. */
1144     OCIdentity di;
1145     /** The base URI where the resources are hold. */
1146     char *baseURI;
1147     /** Bitmap holds observable, discoverable, secure option flag.*/
1148     uint8_t bitmap;
1149     /** Port set in case, the secure flag is set above. */
1150     uint16_t port;
1151     /** Id for each set of links i.e. tag. */
1152     union
1153     {
1154         /** An ordinal number that is not repeated - must be unique in the collection context. */
1155         uint8_t ins;
1156         /** Any unique string including a URI. */
1157         char *uniqueStr;
1158         /** Use UUID for universal uniqueness - used in /oic/res to identify the device. */
1159         OCIdentity uniqueUUID;
1160     };
1161     /** Defines the list of allowable resource types (for Target and anchors) in links included
1162      * in the collection; new links being created can only be from this list. */
1163     char *rts;
1164     /** When specified this is the default relationship to use when an OIC Link does not specify
1165      * an explicit relationship with *rel* parameter. */
1166     char *drel;
1167     /** Time to keep holding resource.*/
1168     uint32_t ttl;
1169 } OCTagsPayload;
1170
1171 /** Resource collection payload. */
1172 typedef struct OCResourceCollectionPayload
1173 {
1174     /** Collection tags payload.*/
1175     OCTagsPayload *tags;
1176     /** Array of links payload. */
1177     OCLinksPayload *setLinks;
1178     /** Holding address of the next resource. */
1179     struct OCResourceCollectionPayload *next;
1180 } OCResourceCollectionPayload;
1181
1182 typedef struct
1183 {
1184     OCPayload base;
1185
1186     /** Device Id */
1187     char *sid;
1188
1189     /** A special case for handling RD address. */
1190     char* baseURI;
1191
1192     /** Name */
1193     char *name;
1194
1195     /** HREF */
1196     char *uri;
1197
1198     /** Resource Type */
1199     char *type;
1200
1201     /** Interface */
1202     OCStringLL *iface;
1203
1204     /** This structure holds the old /oic/res response. */
1205     OCResourcePayload *resources;
1206
1207 } OCDiscoveryPayload;
1208
1209 /**
1210  * Structure holding discovery payload.
1211  */
1212 typedef struct
1213 {
1214     /** Device Name. */
1215     OCDeviceInfo n;
1216     /** Device Identity. */
1217     OCIdentity di;
1218     /** Value holding the bias factor of the RD. */
1219     uint8_t sel;
1220 } OCRDDiscoveryPayload;
1221
1222 /**
1223  * RD Payload that will be transmitted over the wire.
1224  */
1225 typedef struct
1226 {
1227     OCPayload base;
1228     /** Pointer to the discovery response payload.*/
1229     OCRDDiscoveryPayload *rdDiscovery;
1230     /** Pointer to the publish payload.*/
1231     OCResourceCollectionPayload *rdPublish;
1232 } OCRDPayload;
1233
1234 typedef struct
1235 {
1236     OCPayload base;
1237     char *sid;
1238     char* deviceName;
1239     char* specVersion;
1240     char* dataModelVersion;
1241     OCStringLL *interfaces;
1242     OCStringLL *types;
1243 } OCDevicePayload;
1244
1245 typedef struct
1246 {
1247     OCPayload base;
1248     char* uri;
1249     OCPlatformInfo info;
1250     char* rt;
1251     OCStringLL* interfaces;
1252 } OCPlatformPayload;
1253
1254 typedef struct
1255 {
1256     OCPayload base;
1257     uint8_t* securityData;
1258     size_t payloadSize;
1259 } OCSecurityPayload;
1260
1261 #ifdef WITH_PRESENCE
1262 typedef struct
1263 {
1264     OCPayload base;
1265     uint32_t sequenceNumber;
1266     uint32_t maxAge;
1267     OCPresenceTrigger trigger;
1268     char* resourceType;
1269 } OCPresencePayload;
1270 #endif
1271
1272 /**
1273  * Incoming requests handled by the server. Requests are passed in as a parameter to the
1274  * OCEntityHandler callback API.
1275  * The OCEntityHandler callback API must be implemented in the application in order
1276  * to receive these requests.
1277  */
1278 typedef struct
1279 {
1280     /** Associated resource.*/
1281     OCResourceHandle resource;
1282
1283     /** Associated request handle.*/
1284     OCRequestHandle requestHandle;
1285
1286     /** the REST method retrieved from received request PDU.*/
1287     OCMethod method;
1288
1289     /** description of endpoint that sent the request.*/
1290     OCDevAddr devAddr;
1291
1292     /** resource query send by client.*/
1293     char * query;
1294
1295     /** Information associated with observation - valid only when OCEntityHandler flag includes
1296      * ::OC_OBSERVE_FLAG.*/
1297     OCObservationInfo obsInfo;
1298
1299     /** Number of the received vendor specific header options.*/
1300     uint8_t numRcvdVendorSpecificHeaderOptions;
1301
1302     /** Pointer to the array of the received vendor specific header options.*/
1303     OCHeaderOption * rcvdVendorSpecificHeaderOptions;
1304
1305     /** the payload from the request PDU.*/
1306     OCPayload *payload;
1307
1308 } OCEntityHandlerRequest;
1309
1310
1311 /**
1312  * Response from queries to remote servers. Queries are made by calling the OCDoResource API.
1313  */
1314 typedef struct
1315 {
1316     /** Address of remote server.*/
1317     OCDevAddr devAddr;
1318
1319     /** backward compatibility (points to devAddr).*/
1320     OCDevAddr *addr;
1321
1322     /** backward compatibility.*/
1323     OCConnectivityType connType;
1324
1325     /** the security identity of the remote server.*/
1326     OCIdentity identity;
1327
1328     /** the is the result of our stack, OCStackResult should contain coap/other error codes.*/
1329     OCStackResult result;
1330
1331     /** If associated with observe, this will represent the sequence of notifications from server.*/
1332     uint32_t sequenceNumber;
1333
1334     /** resourceURI.*/
1335     const char * resourceUri;
1336
1337     /** the payload for the response PDU.*/
1338     OCPayload *payload;
1339
1340     /** Number of the received vendor specific header options.*/
1341     uint8_t numRcvdVendorSpecificHeaderOptions;
1342
1343     /** An array of the received vendor specific header options.*/
1344     OCHeaderOption rcvdVendorSpecificHeaderOptions[MAX_HEADER_OPTIONS];
1345 } OCClientResponse;
1346
1347 /**
1348  * Request handle is passed to server via the entity handler for each incoming request.
1349  * Stack assigns when request is received, server sets to indicate what request response is for.
1350  */
1351 typedef struct
1352 {
1353     /** Request handle.*/
1354     OCRequestHandle requestHandle;
1355
1356     /** Resource handle.*/
1357     OCResourceHandle resourceHandle;
1358
1359     /** Allow the entity handler to pass a result with the response.*/
1360     OCEntityHandlerResult  ehResult;
1361
1362     /** This is the pointer to server payload data to be transferred.*/
1363     OCPayload* payload;
1364
1365     /** number of the vendor specific header options .*/
1366     uint8_t numSendVendorSpecificHeaderOptions;
1367
1368     /** An array of the vendor specific header options the entity handler wishes to use in response.*/
1369     OCHeaderOption sendVendorSpecificHeaderOptions[MAX_HEADER_OPTIONS];
1370
1371     /** URI of new resource that entity handler might create.*/
1372     char resourceUri[MAX_URI_LENGTH];
1373
1374     /** Server sets to true for persistent response buffer,false for non-persistent response buffer*/
1375     uint8_t persistentBufferFlag;
1376 } OCEntityHandlerResponse;
1377
1378 /**
1379  * Entity's state
1380  */
1381 typedef enum
1382 {
1383     /** Request state.*/
1384     OC_REQUEST_FLAG = (1 << 1),
1385     /** Observe state.*/
1386     OC_OBSERVE_FLAG = (1 << 2)
1387 } OCEntityHandlerFlag;
1388
1389 /**
1390  * Possible return values from client application callback
1391  *
1392  * A client application callback returns an OCStackApplicationResult to indicate whether
1393  * the stack should continue to keep the callback registered.
1394  */
1395 typedef enum
1396 {
1397     /** Make no more calls to the callback and call the OCClientContextDeleter for this callback */
1398     OC_STACK_DELETE_TRANSACTION = 0,
1399     /** Keep this callback registered and call it if an apropriate event occurs */
1400     OC_STACK_KEEP_TRANSACTION
1401 } OCStackApplicationResult;
1402
1403
1404 //#ifdef DIRECT_PAIRING
1405 /**
1406  * @brief   direct pairing Method Type.
1407  *              0:  not allowed
1408  *              1:  pre-configured pin
1409  *              2:  random pin
1410  */
1411 typedef enum OCPrm
1412 {
1413     DP_NOT_ALLOWED             = 0x0,
1414     DP_PRE_CONFIGURED        = (0x1 << 0),
1415     DP_RANDOM_PIN               = (0x1 << 1),
1416 } OCPrm_t;
1417
1418 /**
1419  * Device Information of discoverd direct pairing device(s).
1420  */
1421 typedef struct OCDPDev
1422 {
1423     OCDevAddr               endpoint;
1424     OCConnectivityType   connType;
1425     uint16_t                     securePort;
1426     bool                  edp;
1427     OCPrm_t           *prm;
1428     size_t                prmLen;
1429     OCUUIdentity     deviceID;
1430     OCUUIdentity     rowner;
1431     struct OCDPDev *next;
1432 } OCDPDev_t;
1433 //#endif // DIRECT_PAIRING
1434
1435 /*
1436  * -------------------------------------------------------------------------------------------
1437  * Callback function definitions
1438  * -------------------------------------------------------------------------------------------
1439  */
1440
1441 /**
1442  * Client applications implement this callback to consume responses received from Servers.
1443  */
1444 typedef OCStackApplicationResult (* OCClientResponseHandler)(void *context, OCDoHandle handle,
1445     OCClientResponse * clientResponse);
1446
1447 /**
1448  * Client applications using a context pointer implement this callback to delete the
1449  * context upon removal of the callback/context pointer from the internal callback-list.
1450  */
1451 typedef void (* OCClientContextDeleter)(void *context);
1452
1453 /**
1454  * This info is passed from application to OC Stack when initiating a request to Server.
1455  */
1456 typedef struct OCCallbackData
1457 {
1458     /** Pointer to the context.*/
1459     void *context;
1460
1461     /** The pointer to a function the stack will call to handle the requests.*/
1462     OCClientResponseHandler cb;
1463
1464     /** A pointer to a function to delete the context when this callback is removed.*/
1465     OCClientContextDeleter cd;
1466
1467 #ifdef SUPPORTS_DEFAULT_CTOR
1468     OCCallbackData() = default;
1469     OCCallbackData(void* ctx, OCClientResponseHandler callback, OCClientContextDeleter deleter)
1470         :context(ctx), cb(callback), cd(deleter){}
1471 #endif
1472 } OCCallbackData;
1473
1474 /**
1475  * Application server implementations must implement this callback to consume requests OTA.
1476  * Entity handler callback needs to fill the resPayload of the entityHandlerRequest.
1477  */
1478 typedef OCEntityHandlerResult (*OCEntityHandler)
1479 (OCEntityHandlerFlag flag, OCEntityHandlerRequest * entityHandlerRequest, void* callbackParam);
1480
1481 /**
1482  * Device Entity handler need to use this call back instead of OCEntityHandler.
1483  */
1484 typedef OCEntityHandlerResult (*OCDeviceEntityHandler)
1485 (OCEntityHandlerFlag flag, OCEntityHandlerRequest * entityHandlerRequest, char* uri, void* callbackParam);
1486
1487 //#ifdef DIRECT_PAIRING
1488 /**
1489  * Callback function definition of direct-pairing
1490  *
1491  * @param[OUT] peer - pairing device info.
1492  * @param[OUT} result - It's returned with 'OC_STACK_XXX'. It will return 'OC_STACK_OK'
1493  *                                   if D2D pairing is success without error
1494  */
1495 typedef void (*OCDirectPairingCB)(OCDPDev_t *peer, OCStackResult result);
1496 //#endif // DIRECT_PAIRING
1497
1498 #ifdef __cplusplus
1499 }
1500 #endif // __cplusplus
1501
1502 #endif /* OCTYPES_H_ */