]> code.delx.au - pulseaudio/blob - src/modules/rtp/sap.h
Fix another DoS vulnerability that has been identified by Luigi Auriemma. (Finally...
[pulseaudio] / src / modules / rtp / sap.h
1 #ifndef foosaphfoo
2 #define foosaphfoo
3
4 /* $Id$ */
5
6 /***
7 This file is part of PulseAudio.
8
9 Copyright 2006 Lennart Poettering
10
11 PulseAudio is free software; you can redistribute it and/or modify
12 it under the terms of the GNU Lesser General Public License as published
13 by the Free Software Foundation; either version 2 of the License,
14 or (at your option) any later version.
15
16 PulseAudio is distributed in the hope that it will be useful, but
17 WITHOUT ANY WARRANTY; without even the implied warranty of
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 General Public License for more details.
20
21 You should have received a copy of the GNU Lesser General Public License
22 along with PulseAudio; if not, write to the Free Software
23 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
24 USA.
25 ***/
26
27 #include <inttypes.h>
28 #include <sys/socket.h>
29 #include <sys/types.h>
30 #include <pulsecore/memblockq.h>
31 #include <pulsecore/memchunk.h>
32
33 typedef struct pa_sap_context {
34 int fd;
35 char *sdp_data;
36
37 uint16_t msg_id_hash;
38 } pa_sap_context;
39
40 pa_sap_context* pa_sap_context_init_send(pa_sap_context *c, int fd, char *sdp_data);
41 void pa_sap_context_destroy(pa_sap_context *c);
42
43 int pa_sap_send(pa_sap_context *c, int goodbye);
44
45 pa_sap_context* pa_sap_context_init_recv(pa_sap_context *c, int fd);
46 int pa_sap_recv(pa_sap_context *c, int *goodbye);
47
48 #endif