source: roaraudio/plugins/universal/protocol-discard.c @ 5434:1bbcec2d01e9

Last change on this file since 5434:1bbcec2d01e9 was 5434:1bbcec2d01e9, checked in by phi, 12 years ago

use better plugin names

File size: 1.9 KB
Line 
1//discard.c:
2
3/*
4 *      Copyright (C) Philipp 'ph3-der-loewe' Schafft - 2011-2012
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, 51 Franklin Street, Fifth Floor,
22 *  Boston, MA 02110-1301, USA.
23 *
24 */
25
26#include <roard/include/roard.h>
27
28static int check_client(int client, struct roar_vio_calls * vio) {
29 char buf[4096];
30
31 ROAR_DBG("check_client(client=%i, vio=%p) = ?", client, vio);
32
33 if ( roar_vio_read(vio, buf, sizeof(buf)) < 1 ) {
34  clients_delete(client);
35  return -1;
36 }
37
38 ROAR_DBG("check_client(client=%i, vio=%p) = 0", client, vio);
39 return 0;
40}
41
42
43static struct roard_proto proto[1] = {
44 {ROAR_PROTO_DISCARD, ROAR_SUBSYS_NONE, "Discard all data send to the server", NULL, NULL, check_client, NULL, NULL}
45};
46
47ROARD_DL_REG_PROTO(proto)
48
49ROAR_DL_PLUGIN_START(protocol_discard) {
50 ROARD_DL_CHECK_VERSIONS();
51
52 ROAR_DL_PLUGIN_META_PRODUCT_NIV("protocol-discard", ROAR_VID_ROARAUDIO, ROAR_VNAME_ROARAUDIO);
53 ROAR_DL_PLUGIN_META_VERSION(ROAR_VERSION_STRING);
54 ROAR_DL_PLUGIN_META_LICENSE_TAG(GPLv3_0);
55 ROAR_DL_PLUGIN_META_CONTACT_FLNE("Philipp", "Schafft", "ph3-der-loewe", "lion@lion.leolix.org");
56 ROAR_DL_PLUGIN_META_DESC("Implementation of a dummy protocol discarding all data");
57
58 ROARD_DL_REGFN_PROTO();
59} ROAR_DL_PLUGIN_END
60
61//ll
Note: See TracBrowser for help on using the repository browser.