2019-05-07 02:18:18 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2019 Intel Corporation. All rights reserved.
|
2019-11-11 23:45:21 +00:00
|
|
|
* SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2019-05-07 02:18:18 +00:00
|
|
|
*/
|
|
|
|
|
2019-05-17 09:15:25 +00:00
|
|
|
#ifndef _EVENT_H_
|
|
|
|
#define _EVENT_H_
|
2019-05-07 02:18:18 +00:00
|
|
|
|
2019-05-17 09:15:25 +00:00
|
|
|
#include "bh_platform.h"
|
2019-05-07 02:18:18 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2019-05-17 09:15:25 +00:00
|
|
|
/**
|
|
|
|
* Handle event request from host agent
|
|
|
|
*
|
|
|
|
* @param code the coap packet code
|
|
|
|
* @param event_url the event url
|
|
|
|
*
|
|
|
|
* @return true if success, false otherwise
|
|
|
|
*/
|
|
|
|
bool
|
|
|
|
event_handle_event_request(uint8_t code, const char *event_url,
|
|
|
|
uint32_t register);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test whether the event is registered
|
|
|
|
*
|
|
|
|
* @param event_url the event url
|
|
|
|
*
|
|
|
|
* @return true for registered, false for not registered
|
|
|
|
*/
|
|
|
|
bool
|
|
|
|
event_is_registered(const char *event_url);
|
2019-05-07 02:18:18 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
2019-05-17 09:15:25 +00:00
|
|
|
} /* end of extern "C" */
|
2019-05-07 02:18:18 +00:00
|
|
|
#endif
|
|
|
|
|
2019-05-17 09:15:25 +00:00
|
|
|
#endif /* _EVENT_H_ */
|