| 1234567891011121314151617181920 |
- /*
- * Copyright (C) 2019 Intel Corporation. All rights reserved.
- * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
- */
- #ifndef COAP_EXTENSION_COAP_EXT_H_
- #define COAP_EXTENSION_COAP_EXT_H_
- #include "coap-constants.h"
- #ifdef __cplusplus
- extern "C" {
- #endif
- #define COAP_EVENT (COAP_DELETE + 2)
- #ifdef __cplusplus
- }
- #endif
- #endif /* COAP_EXTENSION_COAP_EXT_H_ */
|