You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
amarok/amarok/src/mediadevice/daap/proxy.h

57 lines
1.8 KiB

/***************************************************************************
* copyright : (C) 2006 Ian Monroe <ian@monroe.nu> *
**************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
#ifndef DAAPPROXY_H
#define DAAPPROXY_H
#include <tqobject.h>
#include <tqserversocket.h>
class DaapClient;
namespace Daap {
class Proxy : public TQObject
{
Q_OBJECT
TQ_OBJECT
public:
Proxy(KURL stream, DaapClient* client, const char* name);
~Proxy();
KURL proxyUrl() { return m_proxyUrl; }
static KURL realStreamUrl( KURL fakeStream, int sessionId );
public slots:
void playbackStopped();
void readProxy();
private:
KURL m_proxyUrl;
Amarok::ProcIO* m_proxy;
};
// We must implement this because TQServerSocket has one pure virtual method.
// It's just used for finding a free port.
class MyServerSocket : public TQServerSocket
{
public:
MyServerSocket() : TQServerSocket( TQ_UINT16( 0 ) ) {}
private:
void newConnection( int ) {}
};
}
#endif