azure-c-shared-utility/inc/azure_c_shared_utility/wsio.h

39 строки
869 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 WSIO_H
#define WSIO_H
#ifdef __cplusplus
#include <cstddef>
#else
#include <stddef.h>
#include <stdbool.h>
#endif /* __cplusplus */
#include "azure_c_shared_utility/xio.h"
#include "azure_c_shared_utility/xlogging.h"
#include "umock_c/umock_c_prod.h"
#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */
typedef struct WSIO_CONFIG_TAG
{
const IO_INTERFACE_DESCRIPTION* underlying_io_interface;
void* underlying_io_parameters;
const char* hostname;
int port;
const char* resource_name;
const char* protocol;
} WSIO_CONFIG;
MOCKABLE_FUNCTION(, const IO_INTERFACE_DESCRIPTION*, wsio_get_interface_description);
#ifdef __cplusplus
}
#endif /* __cplusplus */
#endif /* WSIO_H */