source: roaraudio/roard/include/req.h @ 1162:d9b136a87245

Last change on this file since 1162:d9b136a87245 was 1162:d9b136a87245, checked in by phi, 15 years ago

added whoami call

File size: 3.0 KB
RevLine 
[0]1//req.h:
2
[668]3/*
4 *      Copyright (C) Philipp 'ph3-der-loewe' Schafft - 2008
5 *
6 *  This file is part of roard a part of RoarAudio,
7 *  a cross-platform sound system for both, home and professional use.
8 *  See README for details.
9 *
10 *  This file is free software; you can redistribute it and/or modify
11 *  it under the terms of the GNU General Public License version 3
12 *  as published by the Free Software Foundation.
13 *
14 *  RoarAudio is distributed in the hope that it will be useful,
15 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
16 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 *  GNU General Public License for more details.
18 *
19 *  You should have received a copy of the GNU General Public License
20 *  along with this software; see the file COPYING.  If not, write to
21 *  the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
22 *
23 */
24
[0]25#ifndef _REQ_H_
26#define _REQ_H_
27
28#include <roaraudio.h>
29
30int req_on_noop        (int client, struct roar_message * mes, char * data);
31
32int req_on_identify    (int client, struct roar_message * mes, char * data);
33int req_on_auth        (int client, struct roar_message * mes, char * data);
34
[1162]35int req_on_whoami      (int client, struct roar_message * mes, char * data);
36
[0]37int req_on_new_stream  (int client, struct roar_message * mes, char * data);
38int req_on_exec_stream (int client, struct roar_message * mes, char * data);
[77]39int req_on_con_stream  (int client, struct roar_message * mes, char * data);
[757]40int req_on_passfh      (int client, struct roar_message * mes, char * data);
[0]41
42int req_on_set_meta    (int client, struct roar_message * mes, char * data);
[100]43int req_on_get_meta    (int client, struct roar_message * mes, char * data);
[113]44int req_on_list_meta   (int client, struct roar_message * mes, char * data);
[0]45
46int req_on_get_standby (int client, struct roar_message * mes, char * data);
47int req_on_set_standby (int client, struct roar_message * mes, char * data);
48
49int req_on_exit        (int client, struct roar_message * mes, char * data);
50
51int req_on_server_oinfo(int client, struct roar_message * mes, char * data);
52
53int req_on_list_clients(int client, struct roar_message * mes, char * data);
54int req_on_list_streams(int client, struct roar_message * mes, char * data);
55
56int req_on_get_client  (int client, struct roar_message * mes, char * data);
57int req_on_get_stream  (int client, struct roar_message * mes, char * data);
58
[465]59int req_on_get_stream_para (int client, struct roar_message * mes, char * data);
[1043]60int req_on_set_stream_para (int client, struct roar_message * mes, char * data);
[465]61
[0]62int req_on_kick        (int client, struct roar_message * mes, char * data);
[768]63int req_on_attach      (int client, struct roar_message * mes, char * data);
[0]64
[17]65int req_on_set_vol     (int client, struct roar_message * mes, char * data);
[22]66int req_on_get_vol     (int client, struct roar_message * mes, char * data);
[17]67
[0]68int req_on_add_data    (int client, struct roar_message * mes, char * data);
69
70
71//int req_on_ (int client, struct roar_message * mes, char * data);
72
73#endif
74
75//ll
Note: See TracBrowser for help on using the repository browser.