Pass path for RPC subscribe by url.

This commit is contained in:
Arthur Britto
2013-02-28 18:10:24 -08:00
parent 2f85057920
commit 9cc53bd716
2 changed files with 9 additions and 1 deletions

View File

@@ -29,6 +29,12 @@ RPCSub::RPCSub(const std::string& strUrl, const std::string& strUsername, const
if (mPort < 0)
mPort = mSSL ? 443 : 80;
cLog(lsINFO) << boost::str(boost::format("callRPC sub: ip='%s' port=%d ssl=%d path='%s'")
% mIp
% mPort
% mSSL
% mPath);
}
// XXX Could probably create a bunch of send jobs in a single get of the lock.