2ec7fb30c2
- New Classes: o ProtocolManager - singleton with which all protocols register o ProtocolCollection - Aggregates all registered protocols; exports methods to work on all protocols o StreamBase - aggregates ProtocolCollection with Stream Core and Control; the client/server side stream classes now derive from StreamBase leading to major reduction in their code (more cleanup pending) - AbstractProtocol now supports the additional methods o createInstance() o protocolFrameSize() o protocolFrameOffset(), protocolFramePayloadSize() o protocolId(), payloadProtocolId() o protocolFrameCksum(), protocolFramePayloadCksum() 0 constructor takes an extra param - frameProtoList - Specific protocols - eth2, llc, snap, ip4, udp, tcp now return length, protocol id and cksums correctly (tcp/udp cksum pending) - StreamConfigDialog - protocol controls for length, cksum and protocolid are automatically updated (not fully working yet)
69 lines
1.4 KiB
C++
69 lines
1.4 KiB
C++
#ifndef _MAC_H
|
|
#define _MAC_H
|
|
|
|
#include "abstractprotocol.h"
|
|
|
|
#include "mac.pb.h"
|
|
#include "ui_mac.h"
|
|
|
|
#define MAX_MAC_ITER_COUNT 256
|
|
|
|
class MacConfigForm : public QWidget, public Ui::mac
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
MacConfigForm(QWidget *parent = 0);
|
|
private slots:
|
|
void on_cmbDstMacMode_currentIndexChanged(int index);
|
|
void on_cmbSrcMacMode_currentIndexChanged(int index);
|
|
};
|
|
|
|
class MacProtocol : public AbstractProtocol
|
|
{
|
|
private:
|
|
OstProto::Mac data;
|
|
static MacConfigForm *configForm;
|
|
enum macfield
|
|
{
|
|
mac_dstAddr = 0,
|
|
mac_srcAddr,
|
|
|
|
mac_dstMacMode,
|
|
mac_dstMacCount,
|
|
mac_dstMacStep,
|
|
mac_srcMacMode,
|
|
mac_srcMacCount,
|
|
mac_srcMacStep,
|
|
|
|
mac_fieldCount
|
|
};
|
|
|
|
public:
|
|
MacProtocol(ProtocolList &frameProtoList,
|
|
OstProto::StreamCore *parent = 0);
|
|
virtual ~MacProtocol();
|
|
|
|
static AbstractProtocol* createInstance(
|
|
ProtocolList &frameProtoList,
|
|
OstProto::StreamCore *streamCore = 0);
|
|
|
|
virtual void protoDataCopyInto(OstProto::Stream &stream);
|
|
virtual void protoDataCopyFrom(const OstProto::Stream &stream);
|
|
|
|
virtual QString name() const;
|
|
virtual QString shortName() const;
|
|
|
|
virtual int fieldCount() const;
|
|
|
|
virtual QVariant fieldData(int index, FieldAttrib attrib,
|
|
int streamIndex = 0) const;
|
|
virtual bool setFieldData(int index, const QVariant &value,
|
|
FieldAttrib attrib = FieldValue);
|
|
|
|
virtual QWidget* configWidget();
|
|
virtual void loadConfigWidget();
|
|
virtual void storeConfigWidget();
|
|
};
|
|
|
|
#endif
|