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
64 lines
1.3 KiB
C++
64 lines
1.3 KiB
C++
#ifndef _UDP_H
|
|
#define _UDP_H
|
|
|
|
#include "abstractprotocol.h"
|
|
|
|
#include "udp.pb.h"
|
|
#include "ui_udp.h"
|
|
|
|
class UdpConfigForm : public QWidget, public Ui::udp
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
UdpConfigForm(QWidget *parent = 0);
|
|
};
|
|
|
|
class UdpProtocol : public AbstractProtocol
|
|
{
|
|
private:
|
|
OstProto::Udp data;
|
|
static UdpConfigForm *configForm;
|
|
enum udpfield
|
|
{
|
|
udp_srcPort = 0,
|
|
udp_dstPort,
|
|
udp_totLen,
|
|
udp_cksum,
|
|
|
|
udp_isOverrideTotLen,
|
|
udp_isOverrideCksum,
|
|
|
|
udp_fieldCount
|
|
};
|
|
|
|
public:
|
|
UdpProtocol(ProtocolList &frameProtoList,
|
|
OstProto::StreamCore *parent = 0);
|
|
virtual ~UdpProtocol();
|
|
|
|
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 quint32 protocolId(ProtocolIdType type) 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
|