source: roaraudio/include/roaraudio/client.h @ 0:2a41d2f42394

Last change on this file since 0:2a41d2f42394 was 0:2a41d2f42394, checked in by phi, 16 years ago

Initial revision

File size: 439 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};
20
21#endif
22
23//ll
Note: See TracBrowser for help on using the repository browser.