Commit | Line | Data |
---|---|---|
48842b30 DG |
1 | /* |
2 | * Copyright (C) 2011 - David Goulet <david.goulet@polymtl.ca> | |
3 | * | |
d14d33bf AM |
4 | * This program is free software; you can redistribute it and/or modify |
5 | * it under the terms of the GNU General Public License, version 2 only, | |
6 | * as published by the Free Software Foundation. | |
48842b30 | 7 | * |
d14d33bf AM |
8 | * This program is distributed in the hope that it will be useful, |
9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
11 | * GNU General Public License for more details. | |
48842b30 | 12 | * |
d14d33bf AM |
13 | * You should have received a copy of the GNU General Public License along |
14 | * with this program; if not, write to the Free Software Foundation, Inc., | |
15 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. | |
48842b30 DG |
16 | */ |
17 | ||
18 | #ifndef _UST_CONSUMER_H | |
19 | #define _UST_CONSUMER_H | |
20 | ||
00e2e675 | 21 | #include "consumer.h" |
48842b30 DG |
22 | #include "ust-app.h" |
23 | ||
00e2e675 DG |
24 | int ust_consumer_send_session(int consumer_fd, struct ust_app_session *usess, |
25 | struct consumer_output *consumer); | |
37278a1e DG |
26 | |
27 | int ust_consumer_send_metadata(int sock, struct ust_app_session *usess, | |
28 | struct consumer_output *consumer); | |
29 | ||
30 | int ust_consumer_send_channel_streams(int sock, | |
31 | struct ust_app_channel *uchan, struct ust_app_session *usess, | |
32 | struct consumer_output *consumer); | |
48842b30 DG |
33 | |
34 | #endif /* _UST_CONSUMER_H */ |