blob: 92f0cc9155142552d17b30612001ac1f2c41769f [file] [log] [blame]
Emeric Vigier2f625822012-08-06 11:09:52 -04001// Copyright (C) 2000-2005 Open Source Telecom Corporation.
2// Copyright (C) 2006-2008 David Sugar, Tycho Softworks.
3//
4// This program is free software; you can redistribute it and/or modify
5// it under the terms of the GNU General Public License as published by
6// the Free Software Foundation; either version 2 of the License, or
7// (at your option) any later version.
8//
9// This program is distributed in the hope that it will be useful,
10// but WITHOUT ANY WARRANTY; without even the implied warranty of
11// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12// GNU General Public License for more details.
13//
14// You should have received a copy of the GNU General Public License
15// along with this program; if not, write to the Free Software
16// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17
18#include <cc++/file.h>
19#include <cc++/misc.h>
20#include <ccrtp/rtp.h>
21#include "phone.h"
22
23#ifdef CCXX_NAMESPACES
24namespace ost {
25#endif
26
27class RTPUnicast : public RTPAudio
28{
29public:
30 RTPUnicast();
31};
32
33class RTPMulticast : public RTPAudio
34{
35public:
36 RTPMulticast();
37};
38
39void server(void);
40
41#ifdef CCXX_NAMESPACES
42}
43#endif
44