Julian Hall | 99a57e3 | 2021-07-28 14:18:50 +0100 | [diff] [blame^] | 1 | /* |
| 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 |
| 14 | extern "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 | */ |
| 23 | struct 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 */ |