mirror of
https://github.com/clementine-player/Clementine
synced 2024-12-15 18:58:55 +01:00
18bfa12042
Currently, it can be demoed using --stun-test and the icedemo from pjsip as the other client. TODOs: Add ability to do a full demo using only 2 clementine instances. Complete session initiation over XMPP. Add local & port forwarded sockets as options.
15 lines
553 B
C++
15 lines
553 B
C++
#include "extensions.h"
|
|
|
|
namespace xrme {
|
|
|
|
const char* MediaPlayerExtension::kFilterString =
|
|
"/iq/xrme[@xmlns='http://purplehatstands.com/xmlns/xrme/mediaplayer']";
|
|
const char* RemoteControlExtension::kFilterString =
|
|
"/iq/xrme[@xmlns='http://purplehatstands.com/xmlns/xrme/remotecontrol']";
|
|
const char* MediaStorageExtension::kFilterString =
|
|
"/iq/xrme[@xmlns='http://purplehatstands.com/xmlns/xrme/mediastorage']";
|
|
const char* SIPNegotiation::kFilterString =
|
|
"/iq/xrme[@xmlns='http://purplehatstands.com/xmlns/xrme/sipnegotiation']";
|
|
|
|
}
|