2011-11-23 11:40:32 -05:00
|
|
|
#ifndef RS_BANLIST_ITEMS_H
|
|
|
|
#define RS_BANLIST_ITEMS_H
|
|
|
|
|
|
|
|
/*
|
|
|
|
* libretroshare/src/serialiser: rsbanlistitems.h
|
|
|
|
*
|
|
|
|
* RetroShare Serialiser.
|
|
|
|
*
|
|
|
|
* Copyright 2011 by Robert Fernie.
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License Version 2 as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
|
|
|
* USA.
|
|
|
|
*
|
|
|
|
* Please report all bugs and problems to "retroshare@lunamutt.com".
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <map>
|
|
|
|
|
|
|
|
#include "serialiser/rsserviceids.h"
|
|
|
|
#include "serialiser/rsserial.h"
|
|
|
|
#include "serialiser/rstlvbanlist.h"
|
|
|
|
|
2015-05-30 16:29:06 -04:00
|
|
|
#define RS_PKT_SUBTYPE_BANLIST_ITEM_deprecated 0x01
|
|
|
|
#define RS_PKT_SUBTYPE_BANLIST_CONFIG_ITEM_deprecated 0x02
|
|
|
|
#define RS_PKT_SUBTYPE_BANLIST_ITEM 0x03
|
|
|
|
#define RS_PKT_SUBTYPE_BANLIST_CONFIG_ITEM 0x04
|
2011-11-23 11:40:32 -05:00
|
|
|
|
|
|
|
/**************************************************************************/
|
|
|
|
|
|
|
|
class RsBanListItem: public RsItem
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
RsBanListItem()
|
|
|
|
:RsItem(RS_PKT_VERSION_SERVICE, RS_SERVICE_TYPE_BANLIST,
|
|
|
|
RS_PKT_SUBTYPE_BANLIST_ITEM)
|
2011-11-29 12:14:51 -05:00
|
|
|
{
|
|
|
|
setPriorityLevel(QOS_PRIORITY_RS_BANLIST_ITEM);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-05-29 16:49:37 -04:00
|
|
|
virtual ~RsBanListItem();
|
|
|
|
virtual void clear();
|
|
|
|
std::ostream &print(std::ostream &out, uint16_t indent = 0);
|
2011-11-23 11:40:32 -05:00
|
|
|
|
|
|
|
RsTlvBanList peerList;
|
|
|
|
};
|
|
|
|
|
2015-05-29 16:49:37 -04:00
|
|
|
class RsBanListConfigItem: public RsItem
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
RsBanListConfigItem()
|
|
|
|
:RsItem(RS_PKT_VERSION_SERVICE, RS_SERVICE_TYPE_BANLIST, RS_PKT_SUBTYPE_BANLIST_CONFIG_ITEM) {}
|
|
|
|
|
|
|
|
virtual ~RsBanListConfigItem(){}
|
|
|
|
virtual void clear();
|
|
|
|
|
|
|
|
std::ostream &print(std::ostream &out, uint16_t indent = 0);
|
|
|
|
|
2015-05-30 16:29:06 -04:00
|
|
|
uint32_t type ;
|
|
|
|
RsPeerId peerId ;
|
2015-05-29 16:49:37 -04:00
|
|
|
time_t update_time ;
|
|
|
|
RsTlvBanList banned_peers;
|
|
|
|
};
|
2011-11-23 11:40:32 -05:00
|
|
|
|
|
|
|
class RsBanListSerialiser: public RsSerialType
|
|
|
|
{
|
2015-05-29 16:49:37 -04:00
|
|
|
public:
|
|
|
|
RsBanListSerialiser()
|
|
|
|
:RsSerialType(RS_PKT_VERSION_SERVICE, RS_SERVICE_TYPE_BANLIST)
|
|
|
|
{ return; }
|
|
|
|
virtual ~RsBanListSerialiser()
|
|
|
|
{ return; }
|
|
|
|
|
|
|
|
virtual uint32_t size(RsItem *);
|
|
|
|
virtual bool serialise (RsItem *item, void *data, uint32_t *size);
|
|
|
|
virtual RsItem * deserialise(void *data, uint32_t *size);
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
virtual uint32_t sizeList(RsBanListItem *);
|
|
|
|
virtual bool serialiseList (RsBanListItem *item, void *data, uint32_t *size);
|
|
|
|
virtual RsBanListItem *deserialiseList(void *data, uint32_t *size);
|
|
|
|
|
|
|
|
virtual uint32_t sizeListConfig(RsBanListConfigItem *);
|
|
|
|
virtual bool serialiseListConfig (RsBanListConfigItem *item, void *data, uint32_t *size);
|
|
|
|
virtual RsBanListConfigItem *deserialiseListConfig(void *data, uint32_t *size);
|
2011-11-23 11:40:32 -05:00
|
|
|
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
/**************************************************************************/
|
|
|
|
|
|
|
|
#endif /* RS_BANLIST_ITEMS_H */
|
|
|
|
|
|
|
|
|