source: azure_iot_hub_f767zi/trunk/azure_iot_sdk/c-utility/inc/azure_c_shared_utility/tlsio_esp_at.h@ 457

Last change on this file since 457 was 457, checked in by coas-nagasima, 4 years ago

ファイルを追加

  • Property svn:eol-style set to native
  • Property svn:mime-type set to text/x-chdr;charset=UTF-8
File size: 1.6 KB
Line 
1// Copyright (c) Microsoft. All rights reserved.
2// Licensed under the MIT license. See LICENSE file in the project root for full license information.
3
4#ifndef TLSIO_ESP_AT_H
5#define TLSIO_ESP_AT_H
6
7#include "azure_c_shared_utility/xio.h"
8#include "azure_c_shared_utility/xlogging.h"
9#include "umock_c/umock_c_prod.h"
10#include "azure_c_shared_utility/const_defines.h"
11
12#ifdef __cplusplus
13extern "C" {
14#include <cstddef>
15#else
16#include <stddef.h>
17#endif /* __cplusplus */
18
19MOCKABLE_FUNCTION(, CONCRETE_IO_HANDLE, tlsio_esp_at_create, void*, io_create_parameters);
20MOCKABLE_FUNCTION(, void, tlsio_esp_at_destroy, CONCRETE_IO_HANDLE, tls_io);
21MOCKABLE_FUNCTION(, int, tlsio_esp_at_open, CONCRETE_IO_HANDLE, tls_io, ON_IO_OPEN_COMPLETE, on_io_open_complete, void*, on_io_open_complete_context, ON_BYTES_RECEIVED, on_bytes_received, void*, on_bytes_received_context, ON_IO_ERROR, on_io_error, void*, on_io_error_context);
22MOCKABLE_FUNCTION(, int, tlsio_esp_at_close, CONCRETE_IO_HANDLE, tls_io, ON_IO_CLOSE_COMPLETE, on_io_close_complete, void*, callback_context);
23MOCKABLE_FUNCTION(, int, tlsio_esp_at_send, CONCRETE_IO_HANDLE, tls_io, const void*, buffer, size_t, size, ON_SEND_COMPLETE, on_send_complete, void*, callback_context);
24MOCKABLE_FUNCTION(, void, tlsio_esp_at_dowork, CONCRETE_IO_HANDLE, tls_io);
25MOCKABLE_FUNCTION(, int, tlsio_esp_at_setoption, CONCRETE_IO_HANDLE, tls_io, const char*, optionName, const void*, value);
26
27MOCKABLE_FUNCTION(, const IO_INTERFACE_DESCRIPTION*, tlsio_esp_at_get_interface_description);
28
29#ifdef __cplusplus
30}
31#endif /* __cplusplus */
32
33#endif /* TLSIO_ESP_AT_H */
Note: See TracBrowser for help on using the repository browser.