ccRTP 2.1.2
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
server.h
Go to the documentation of this file.
1 // Copyright (C) 2000-2005 Open Source Telecom Corporation.
2 // Copyright (C) 2006-2014 David Sugar, Tycho Softworks.
3 // Copyright (C) 2015 Cherokees of Idaho.
4 //
5 // This program is free software; you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation; either version 2 of the License, or
8 // (at your option) any later version.
9 //
10 // This program is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 // GNU General Public License for more details.
14 //
15 // You should have received a copy of the GNU General Public License
16 // along with this program; if not, write to the Free Software
17 // Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18 
19 #include <cc++/file.h>
20 #include <cc++/misc.h>
21 #include <ccrtp/rtp.h>
22 #include "phone.h"
23 
24 #ifdef CCXX_NAMESPACES
25 namespace ost {
26 #endif
27 
28 class RTPUnicast : public RTPAudio
29 {
30 public:
31  RTPUnicast();
32 };
33 
34 class RTPMulticast : public RTPAudio
35 {
36 public:
37  RTPMulticast();
38 };
39 
40 void server(void);
41 
42 #ifdef CCXX_NAMESPACES
43 }
44 #endif
45 
This is the base session stack that will maintain all network audio activity.
Definition: phone.h:175
void server(void)
Definition: server.cpp:32
Generic and audio/video profile specific RTP interface of ccRTP.