source: roaraudio/include/roaraudio/client.h @ 345:7b7f3fc6d5c5

Last change on this file since 345:7b7f3fc6d5c5 was 345:7b7f3fc6d5c5, checked in by phi, 16 years ago

added basic things for ACL support

File size: 470 bytes
Line 
1//stream.h:
2
3#ifndef _ROARAUDIO_CLIENT_H_
4#define _ROARAUDIO_CLIENT_H_
5
6#define ROAR_BUFFER_NAME 80
7
8#define ROAR_CLIENTS_MAX 64
9#define ROAR_CLIENTS_MAX_STREAMS_PER_CLIENT 4
10
11struct roar_client {
12 int fh; /* controll connection */
13// int last_stream; /* id of the last stream created */
14 char name[ROAR_BUFFER_NAME];
15 int pid;
16 char host[ROAR_BUFFER_NAME];
17 int execed;
18 int streams[ROAR_CLIENTS_MAX_STREAMS_PER_CLIENT];
19 struct roar_acl_target * acl;
20};
21
22#endif
23
24//ll
Note: See TracBrowser for help on using the repository browser.