summaryrefslogtreecommitdiff
path: root/cras/src/server/cras_control_rclient.h
blob: d654df549825d70192273200d11ad20014bc22a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* Copyright 2019 The Chromium OS Authors. All rights reserved.
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */

#ifndef CRAS_CONTROL_RCLIENT_H_
#define CRAS_CONTROL_RCLIENT_H_

struct cras_rclient;

/* Creates a control rclient structure.
 * Args:
 *    fd - The file descriptor used for communication with the client.
 *    id - Unique identifier for this client.
 * Returns:
 *    A pointer to the newly created rclient on success, NULL on failure.
 */
struct cras_rclient *cras_control_rclient_create(int fd, size_t id);

#endif /* CRAS_CONTROL_RCLIENT_H_ */