| 1234567891011121314151617181920212223242526272829303132 |
- /*
- * Copyright (C) 2019 Intel Corporation. All rights reserved.
- * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
- */
- #ifndef _REQ_RESP_API_H_
- #define _REQ_RESP_API_H_
- #include "bh_platform.h"
- #ifdef __cplusplus
- extern "C" {
- #endif
- bool
- wasm_response_send(const char *buf, int size);
- void
- wasm_register_resource(const char *url);
- void
- wasm_post_request(const char *buf, int size);
- void
- wasm_sub_event(const char *url);
- #ifdef __cplusplus
- }
- #endif
- #endif /* end of _REQ_RESP_API_H_ */
|