mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-05-27 10:05:51 -04:00
Added ServiceControl + ServiceInfo. Basics are working, but still a lot to do!
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@7196 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
a4b54e1021
commit
83a78bcaee
71 changed files with 3168 additions and 209 deletions
|
@ -43,6 +43,24 @@ p3Wire::p3Wire(RsGeneralDataService* gds, RsNetworkExchangeService* nes, RsGixs
|
|||
}
|
||||
|
||||
|
||||
const std::string WIRE_APP_NAME = "gxswire";
|
||||
const uint16_t WIRE_APP_MAJOR_VERSION = 1;
|
||||
const uint16_t WIRE_APP_MINOR_VERSION = 0;
|
||||
const uint16_t WIRE_MIN_MAJOR_VERSION = 1;
|
||||
const uint16_t WIRE_MIN_MINOR_VERSION = 0;
|
||||
|
||||
RsServiceInfo p3Wire::getServiceInfo()
|
||||
{
|
||||
return RsServiceInfo(RS_SERVICE_GXSV2_TYPE_WIRE,
|
||||
WIRE_APP_NAME,
|
||||
WIRE_APP_MAJOR_VERSION,
|
||||
WIRE_APP_MINOR_VERSION,
|
||||
WIRE_MIN_MAJOR_VERSION,
|
||||
WIRE_MIN_MINOR_VERSION);
|
||||
}
|
||||
|
||||
|
||||
|
||||
uint32_t p3Wire::wireAuthenPolicy()
|
||||
{
|
||||
uint32_t policy = 0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue