2018-05-29 15:08:17 -04:00
|
|
|
/*******************************************************************************
|
|
|
|
* libretroshare/src/rsitems: rsbwctrlitems.h *
|
|
|
|
* *
|
|
|
|
* libretroshare: retroshare core library *
|
|
|
|
* *
|
|
|
|
* Copyright 2012 by Robert Fernie <retroshare@lunamutt.com> *
|
|
|
|
* *
|
|
|
|
* This program is free software: you can redistribute it and/or modify *
|
|
|
|
* it under the terms of the GNU Lesser General Public License as *
|
|
|
|
* published by the Free Software Foundation, either version 3 of the *
|
|
|
|
* License, or (at your option) any later version. *
|
|
|
|
* *
|
|
|
|
* This program 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 Lesser General Public License for more details. *
|
|
|
|
* *
|
|
|
|
* You should have received a copy of the GNU Lesser General Public License *
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>. *
|
|
|
|
* *
|
|
|
|
*******************************************************************************/
|
2012-06-21 19:23:46 -04:00
|
|
|
#ifndef RS_BANDWIDTH_CONTROL_ITEMS_H
|
|
|
|
#define RS_BANDWIDTH_CONTROL_ITEMS_H
|
|
|
|
|
|
|
|
#include <map>
|
|
|
|
|
2017-04-26 05:40:46 -04:00
|
|
|
#include "rsitems/rsitem.h"
|
2017-04-18 15:11:37 -04:00
|
|
|
#include "rsitems/rsserviceids.h"
|
2017-04-26 05:40:46 -04:00
|
|
|
#include "rsitems/itempriorities.h"
|
2012-06-21 19:23:46 -04:00
|
|
|
|
2017-04-30 10:05:37 -04:00
|
|
|
#include "serialiser/rsserializer.h"
|
|
|
|
#include "serialiser/rstypeserializer.h"
|
2017-04-11 15:37:35 -04:00
|
|
|
|
2012-06-21 19:23:46 -04:00
|
|
|
#define RS_PKT_SUBTYPE_BWCTRL_ALLOWED_ITEM 0x01
|
|
|
|
|
|
|
|
/**************************************************************************/
|
|
|
|
|
|
|
|
class RsBwCtrlAllowedItem: public RsItem
|
|
|
|
{
|
2017-04-11 15:37:35 -04:00
|
|
|
public:
|
|
|
|
RsBwCtrlAllowedItem() :RsItem(RS_PKT_VERSION_SERVICE, RS_SERVICE_TYPE_BWCTRL, RS_PKT_SUBTYPE_BWCTRL_ALLOWED_ITEM)
|
|
|
|
{
|
2012-06-21 19:23:46 -04:00
|
|
|
setPriorityLevel(QOS_PRIORITY_RS_BWCTRL_ALLOWED_ITEM);
|
2017-04-11 15:37:35 -04:00
|
|
|
return;
|
2012-06-21 19:23:46 -04:00
|
|
|
}
|
|
|
|
|
2017-04-11 15:37:35 -04:00
|
|
|
virtual ~RsBwCtrlAllowedItem() {}
|
|
|
|
virtual void clear();
|
2012-06-21 19:23:46 -04:00
|
|
|
|
2017-04-26 05:40:46 -04:00
|
|
|
void serial_process(RsGenericSerializer::SerializeJob j,RsGenericSerializer::SerializeContext& ctx);
|
2012-06-21 19:23:46 -04:00
|
|
|
|
2017-04-11 15:37:35 -04:00
|
|
|
uint32_t allowedBw; // Units are bytes/sec => 4Gb/s;
|
2012-06-21 19:23:46 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2017-04-24 08:14:34 -04:00
|
|
|
class RsBwCtrlSerialiser: public RsServiceSerializer
|
2012-06-21 19:23:46 -04:00
|
|
|
{
|
2017-04-11 15:37:35 -04:00
|
|
|
public:
|
2017-04-24 08:14:34 -04:00
|
|
|
RsBwCtrlSerialiser() :RsServiceSerializer(RS_SERVICE_TYPE_BWCTRL) {}
|
2017-04-11 15:37:35 -04:00
|
|
|
virtual ~RsBwCtrlSerialiser() {}
|
2012-06-21 19:23:46 -04:00
|
|
|
|
2017-04-16 13:59:22 -04:00
|
|
|
RsItem *create_item(uint16_t /* service */, uint8_t /* item_sub_id */) const;
|
2012-06-21 19:23:46 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
/**************************************************************************/
|
|
|
|
|
|
|
|
#endif /* RS_BANDWIDTH_CONTROL_ITEMS_H */
|
|
|
|
|