Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThorvald Natvig <slicer@users.sourceforge.net>2010-01-07 04:00:26 +0300
committerThorvald Natvig <slicer@users.sourceforge.net>2010-01-07 04:03:16 +0300
commitb5b6ba260464a52d58d94d2fe3001504f3d54f5d (patch)
treec37ffd59ec3ed2ad043b4418b48d4819690c2283 /src/murmur/MurmurIceWrapper.cpp
parent9a38eee6f68d239581cb4bc73f65ee03fb722194 (diff)
Add getCertificateList to Ice
Diffstat (limited to 'src/murmur/MurmurIceWrapper.cpp')
-rw-r--r--src/murmur/MurmurIceWrapper.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/murmur/MurmurIceWrapper.cpp b/src/murmur/MurmurIceWrapper.cpp
index 29665c7a0..3cfa25341 100644
--- a/src/murmur/MurmurIceWrapper.cpp
+++ b/src/murmur/MurmurIceWrapper.cpp
@@ -58,6 +58,10 @@ void ::Murmur::ServerI::getChannels_async(const ::Murmur::AMD_Server_getChannels
ExecEvent *ie = new ExecEvent(boost::bind(&impl_Server_getChannels, cb, QString::fromStdString(current.id.name).toInt()));
QCoreApplication::instance()->postEvent(mi, ie);
};
+void ::Murmur::ServerI::getCertificateList_async(const ::Murmur::AMD_Server_getCertificateListPtr &cb, ::Ice::Int p1, const ::Ice::Current &current) {
+ ExecEvent *ie = new ExecEvent(boost::bind(&impl_Server_getCertificateList, cb, QString::fromStdString(current.id.name).toInt(), p1));
+ QCoreApplication::instance()->postEvent(mi, ie);
+};
void ::Murmur::ServerI::getTree_async(const ::Murmur::AMD_Server_getTreePtr &cb, const ::Ice::Current &current) {
ExecEvent *ie = new ExecEvent(boost::bind(&impl_Server_getTree, cb, QString::fromStdString(current.id.name).toInt()));
QCoreApplication::instance()->postEvent(mi, ie);