blob: 83b88ce75ffb1ac34b025a3c5cb67e6e17d04044 [file] [log] [blame]
/*
* Copyright (c) 2021, Arm Limited and Contributors. All rights reserved.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
#ifndef SERVICE_ACCESS_INFO_H
#define SERVICE_ACCESS_INFO_H
#include <stddef.h>
#include <stdint.h>
#ifdef __cplusplus
extern "C" {
#endif
/**
* @brief Information about accessing a service
*
* Provides information to a client about accessing a service provided
* by a remote service provider instance.
*/
struct service_access_info
{
uint32_t supported_encodings;
size_t max_req_size;
};
#ifdef __cplusplus
}
#endif
#endif /* SERVICE_ACCESS_INFO_H */