Extensible Connection-oriented Messaging (XCM)
Loading...
Searching...
No Matches
xcm_compat.h
Go to the documentation of this file.
1/*
2 * SPDX-License-Identifier: BSD-3-Clause
3 * Copyright(c) 2020 Ericsson AB
4 */
5
6#ifndef XCM_COMPAT_H
7#define XCM_COMPAT_H
8#ifdef __cplusplus
9extern "C" {
10#endif
11
20#define XCM_FD_READABLE (1<<0)
22#define XCM_FD_WRITABLE (1<<1)
24#define XCM_FD_EXCEPTION (1<<2)
25
117int xcm_want(struct xcm_socket *socket, int condition, int *fds, int *events,
118 size_t capacity);
119
120#ifdef __cplusplus
121}
122#endif
123#endif
int xcm_want(struct xcm_socket *socket, int condition, int *fds, int *events, size_t capacity)