| 1 | /*
 | 
|---|
| 2 |  * rtspproxy.h - proxy for RTSP allowing direct and/or virtual endpoints
 | 
|---|
| 3 |  * Copyright (C) 2004  Justin Karneges
 | 
|---|
| 4 |  *
 | 
|---|
| 5 |  * This library is free software; you can redistribute it and/or
 | 
|---|
| 6 |  * modify it under the terms of the GNU Lesser General Public
 | 
|---|
| 7 |  * License as published by the Free Software Foundation; either
 | 
|---|
| 8 |  * version 2.1 of the License, or (at your option) any later version.
 | 
|---|
| 9 |  *
 | 
|---|
| 10 |  * This library 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 GNU
 | 
|---|
| 13 |  * Lesser General Public License for more details.
 | 
|---|
| 14 |  *
 | 
|---|
| 15 |  * You should have received a copy of the GNU Lesser General Public
 | 
|---|
| 16 |  * License along with this library; if not, write to the Free Software
 | 
|---|
| 17 |  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 | 
|---|
| 18 |  *
 | 
|---|
| 19 |  */
 | 
|---|
| 20 | 
 | 
|---|
| 21 | #ifndef RTSPPROXY_H
 | 
|---|
| 22 | #define RTSPPROXY_H
 | 
|---|
| 23 | 
 | 
|---|
| 24 | #include <qobject.h>
 | 
|---|
| 25 | #include <qcstring.h>
 | 
|---|
| 26 | #include <qstringlist.h>
 | 
|---|
| 27 | #include "bytestream.h"
 | 
|---|
| 28 | 
 | 
|---|
| 29 | class RTSPProxy : public QObject
 | 
|---|
| 30 | {
 | 
|---|
| 31 |         Q_OBJECT
 | 
|---|
| 32 | public:
 | 
|---|
| 33 |         RTSPProxy(QObject *parent=0);
 | 
|---|
| 34 |         ~RTSPProxy();
 | 
|---|
| 35 | 
 | 
|---|
| 36 |         int startIncoming(const QStringList &urls, ByteStream *server, int *incomingPort);
 | 
|---|
| 37 |         int startIncoming(const QStringList &urls, const QString &serverHost, int serverPort, int *incomingPort);
 | 
|---|
| 38 |         int startExisting(const QStringList &urls, ByteStream *client, const QString &serverHost, int serverPort);
 | 
|---|
| 39 |         void stop(int id);
 | 
|---|
| 40 | 
 | 
|---|
| 41 |         void writeAsClient(int id, int source, int dest, const QByteArray &buf);
 | 
|---|
| 42 |         void writeAsServer(int id, int source, int dest, const QByteArray &buf);
 | 
|---|
| 43 | 
 | 
|---|
| 44 |         static QString mangle(const QString &url, const QString &host, int port);
 | 
|---|
| 45 | 
 | 
|---|
| 46 | signals:
 | 
|---|
| 47 |         void packetFromClient(int id, int source, int dest, const QByteArray &buf);
 | 
|---|
| 48 |         void packetFromServer(int id, int source, int dest, const QByteArray &buf);
 | 
|---|
| 49 | 
 | 
|---|
| 50 | public:
 | 
|---|
| 51 |         class Private;
 | 
|---|
| 52 | private:
 | 
|---|
| 53 |         Private *d;
 | 
|---|
| 54 | };
 | 
|---|
| 55 | 
 | 
|---|
| 56 | #endif
 | 
|---|