blob: b9f4ade875ec69ee4a7ddbf4c72db743d259920e [file] [log] [blame]
/*
* Copyright (c) 2016 Intel Corporation
*
* Copyright (c) 2013, Institute for Pervasive Computing, ETH Zurich
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. Neither the name of the Institute nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* This file is part of the Contiki operating system.
*/
#ifndef SEPARATE_H
#define SEPARATE_H
#include "oic/messaging/coap/coap.h"
#include "oic/messaging/coap/transactions.h"
#ifdef __cplusplus
extern "C" {
#endif
#if MYNEWT_VAL(OC_SEPARATE_RESPONSES)
/* OIC stack headers */
#include "oic/messaging/coap/oc_coap.h"
#include "oic/oc_ri.h"
typedef struct coap_separate {
SLIST_ENTRY(coap_separate) next;
coap_message_type_t type;
uint8_t token_len;
uint8_t token[COAP_TOKEN_LEN];
uint32_t block1_num;
uint16_t block1_size;
uint32_t block2_num;
uint16_t block2_size;
int32_t observe;
oc_endpoint_t endpoint;
} coap_separate_t;
struct coap_packet;
int coap_separate_accept(struct coap_packet_rx *request,
struct oc_separate_response *separate_response,
oc_endpoint_t *endpoint, int observe);
void coap_separate_resume(struct coap_packet *response,
struct coap_separate *separate_store,
uint8_t code, uint16_t mid);
void coap_separate_clear(struct oc_separate_response *separate_response,
struct coap_separate *separate_store);
void coap_separate_init(void);
#endif
#ifdef __cplusplus
}
#endif
#endif /* SEPARATE_H */