2
0
mirror of https://gitlab.isc.org/isc-projects/kea synced 2025-08-30 13:37:55 +00:00

made method signature consistent with lib/cc/session.h.

I believe this is sufficiently trivial, so committing it without an explicit review.


git-svn-id: svn://bind10.isc.org/svn/bind10/trunk@2419 e5f2f494-b856-4b98-b285-d166d9295462
This commit is contained in:
JINMEI Tatuya 2010-07-06 21:30:10 +00:00
parent 9a9a308009
commit 3cfa66a9a2
2 changed files with 9 additions and 10 deletions

View File

@ -90,8 +90,7 @@ getFirstMessage(std::string& group, std::string& to)
}
void
addMessage(ElementPtr msg, const std::string& group, const std::string& to)
{
addMessage(ElementPtr msg, const std::string& group, const std::string& to) {
ElementPtr m_el = Element::createList();
m_el->add(Element::create(group));
m_el->add(Element::create(to));
@ -247,7 +246,7 @@ Session::unsubscribe(std::string group, std::string instance) {
listRemove(subscriptions, s_el);
}
unsigned int
int
Session::group_sendmsg(ElementPtr msg, std::string group,
std::string to, std::string instance UNUSED_PARAM)
{
@ -264,7 +263,7 @@ Session::group_recvmsg(ElementPtr& envelope, ElementPtr& msg,
return (recvmsg(envelope, msg, nonblock, seq));
}
unsigned int
int
Session::reply(ElementPtr& envelope, ElementPtr& newmsg) {
//cout << "[XX] client sends reply: " << newmsg << endl;
//cout << "[XX] env: " << envelope << endl;

View File

@ -86,16 +86,16 @@ namespace isc {
std::string instance = "*");
void unsubscribe(std::string group,
std::string instance = "*");
unsigned int group_sendmsg(isc::data::ElementPtr msg,
std::string group,
std::string instance = "*",
std::string to = "*");
int group_sendmsg(isc::data::ElementPtr msg,
std::string group,
std::string instance = "*",
std::string to = "*");
bool group_recvmsg(isc::data::ElementPtr& envelope,
isc::data::ElementPtr& msg,
bool nonblock = true,
int seq = -1);
unsigned int reply(isc::data::ElementPtr& envelope,
isc::data::ElementPtr& newmsg);
int reply(isc::data::ElementPtr& envelope,
isc::data::ElementPtr& newmsg);
bool hasQueuedMsgs();
};