Adding start of new Mail Service.

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@7723 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
drbob 2014-12-02 13:22:48 +00:00
parent 6d32524837
commit 6588eafb99
14 changed files with 1321 additions and 1 deletions

View file

@ -175,6 +175,11 @@ uint16_t RsItem::PacketService() const
return (type >> 8) & 0xFFFF;
}
void RsItem::setPacketService(uint16_t service)
{
type &= 0xFF0000FF;
type |= (uint32_t) (service << 8);
}
RsSerialType::RsSerialType(uint32_t t)