1
0
mirror of https://github.com/clementine-player/Clementine synced 2024-12-15 18:58:55 +01:00
Clementine-audio-player-Mac.../3rdparty/libxrme/extensions.cpp
John Maguire 18bfa12042 Add the beginnings of an ICE socket implementation.
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.
2011-04-07 13:38:27 +00:00

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']";
}