22 строки
622 B
C
22 строки
622 B
C
// Copyright (c) Microsoft. All rights reserved.
|
|
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
|
|
|
|
#ifndef TLSIO_CYCLONESSL_SOCKET_H
|
|
#define TLSIO_CYCLONESSL_SOCKET_H
|
|
|
|
#include "tls.h"
|
|
#include "umock_c/umock_c_prod.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif /* __cplusplus */
|
|
|
|
MOCKABLE_FUNCTION(, int, tlsio_cyclonessl_socket_create, const char*, hostname, unsigned int, port, TlsSocket*, new_socket);
|
|
MOCKABLE_FUNCTION(, void, tlsio_cyclonessl_socket_destroy, TlsSocket, socket);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif /* __cplusplus */
|
|
|
|
#endif /* TLSIO_CYCLONESSL_SOCKET_H */
|