blob: 83b88ce75ffb1ac34b025a3c5cb67e6e17d04044 [file] [log] [blame]
Julian Hall99a57e32021-07-28 14:18:50 +01001/*
2 * Copyright (c) 2021, Arm Limited and Contributors. All rights reserved.
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7#ifndef SERVICE_ACCESS_INFO_H
8#define SERVICE_ACCESS_INFO_H
9
10#include <stddef.h>
11#include <stdint.h>
12
13#ifdef __cplusplus
14extern "C" {
15#endif
16
17/**
18 * @brief Information about accessing a service
19 *
20 * Provides information to a client about accessing a service provided
21 * by a remote service provider instance.
22 */
23struct service_access_info
24{
25 uint32_t supported_encodings;
26 size_t max_req_size;
27};
28
29#ifdef __cplusplus
30}
31#endif
32
33#endif /* SERVICE_ACCESS_INFO_H */