0103696016
- new method: fieldFlags() - isCksum, isMeta; Note: isMeta is a flag now not a attrib - fieldData() bit fields are now in lsb not msb - protocolFrameValue() and subclasses changed accordingly - protocolFrameValue() now takes an additional bool param indicating whether the frameValue is being requested for a checksum calculation; if so fields which are checksum fields are assumed to be zero and their value is not fetched to prevent infinite recursion - Other Protocols - mac: srcMac/dstMac modes is now working - vlan: implemented VLAN protocol - ip4: src/dst Addr modes is now working - udp/tcp: checksum done - Basic testing done for MAC, VLAN, IPv4, UDP and TCP protocols - sample protocol: .cpp/.h added to repos - need to be made compilable - StreamConfigDialog - Redesigned the protocol selection tab to accomodate "Advanced Protocol Selection" - L2 Tab config widgets are now in 2 columns - Packet Tree View is no longer collapsed if selected protocols don't change
57 lines
1.2 KiB
C++
57 lines
1.2 KiB
C++
#ifndef _SAMPLE_H
|
|
#define _SAMPLE_H
|
|
|
|
#include "abstractprotocol.h"
|
|
|
|
#include "sample.pb.h"
|
|
#include "ui_sample.h"
|
|
|
|
class SampleConfigForm : public QWidget, public Ui::Sample
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
SampleConfigForm(QWidget *parent = 0);
|
|
private slots:
|
|
};
|
|
|
|
class SampleProtocol : public AbstractProtocol
|
|
{
|
|
private:
|
|
OstProto::Sample data;
|
|
static SampleConfigForm *configForm;
|
|
enum samplefield
|
|
{
|
|
|
|
sample_fieldCount
|
|
};
|
|
|
|
public:
|
|
SampleProtocol(ProtocolList &frameProtoList,
|
|
OstProto::StreamCore *parent = 0);
|
|
virtual ~SampleProtocol();
|
|
|
|
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 AbstractProtocol::FieldFlags fieldFlags(int index) 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
|