2009-04-27 11:51:44 -05:00
|
|
|
#ifndef _IPV4_H
|
|
|
|
#define _IPV4_H
|
|
|
|
|
|
|
|
#include "abstractprotocol.h"
|
|
|
|
|
|
|
|
#include "ip4.pb.h"
|
|
|
|
#include "ui_ip4.h"
|
|
|
|
|
2009-12-28 02:31:28 -06:00
|
|
|
#define IP_FLAG_MF 0x1
|
|
|
|
#define IP_FLAG_DF 0x2
|
|
|
|
#define IP_FLAG_UNUSED 0x4
|
2009-04-27 11:51:44 -05:00
|
|
|
|
|
|
|
|
|
|
|
class Ip4ConfigForm : public QWidget, public Ui::ip4
|
|
|
|
{
|
2009-12-28 02:31:28 -06:00
|
|
|
Q_OBJECT
|
2009-04-27 11:51:44 -05:00
|
|
|
public:
|
2009-12-28 02:31:28 -06:00
|
|
|
Ip4ConfigForm(QWidget *parent = 0);
|
|
|
|
~Ip4ConfigForm();
|
2009-04-27 11:51:44 -05:00
|
|
|
private slots:
|
2009-12-28 02:31:28 -06:00
|
|
|
void on_cmbIpSrcAddrMode_currentIndexChanged(int index);
|
|
|
|
void on_cmbIpDstAddrMode_currentIndexChanged(int index);
|
2009-04-27 11:51:44 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
class Ip4Protocol : public AbstractProtocol
|
|
|
|
{
|
|
|
|
private:
|
2009-12-28 02:31:28 -06:00
|
|
|
OstProto::Ip4 data;
|
|
|
|
Ip4ConfigForm *configForm;
|
|
|
|
enum ip4field
|
|
|
|
{
|
|
|
|
ip4_ver = 0,
|
|
|
|
ip4_hdrLen,
|
|
|
|
ip4_tos,
|
|
|
|
ip4_totLen,
|
|
|
|
ip4_id,
|
|
|
|
ip4_flags,
|
|
|
|
ip4_fragOfs,
|
|
|
|
ip4_ttl,
|
|
|
|
ip4_proto,
|
|
|
|
ip4_cksum,
|
|
|
|
ip4_srcAddr,
|
|
|
|
ip4_dstAddr,
|
|
|
|
|
|
|
|
ip4_isOverrideVer,
|
|
|
|
ip4_isOverrideHdrLen,
|
|
|
|
ip4_isOverrideTotLen,
|
|
|
|
ip4_isOverrideCksum,
|
|
|
|
|
|
|
|
ip4_srcAddrMode,
|
|
|
|
ip4_srcAddrCount,
|
|
|
|
ip4_srcAddrMask,
|
|
|
|
|
|
|
|
ip4_dstAddrMode,
|
|
|
|
ip4_dstAddrCount,
|
|
|
|
ip4_dstAddrMask,
|
|
|
|
|
|
|
|
ip4_fieldCount
|
|
|
|
};
|
2009-04-27 11:51:44 -05:00
|
|
|
|
|
|
|
public:
|
2009-12-28 02:31:28 -06:00
|
|
|
Ip4Protocol(StreamBase *stream, AbstractProtocol *parent = 0);
|
|
|
|
virtual ~Ip4Protocol();
|
2009-04-27 11:51:44 -05:00
|
|
|
|
2009-12-28 02:31:28 -06:00
|
|
|
static AbstractProtocol* createInstance(StreamBase *stream,
|
|
|
|
AbstractProtocol *parent = 0);
|
|
|
|
virtual quint32 protocolNumber() const;
|
Protocol Framework basic code in place now. Cleanup pending.
- 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)
2009-05-10 01:27:17 -05:00
|
|
|
|
2009-12-28 02:31:28 -06:00
|
|
|
virtual void protoDataCopyInto(OstProto::Protocol &protocol) const;
|
|
|
|
virtual void protoDataCopyFrom(const OstProto::Protocol &protocol);
|
2009-04-27 11:51:44 -05:00
|
|
|
|
2009-12-28 02:31:28 -06:00
|
|
|
virtual QString name() const;
|
|
|
|
virtual QString shortName() const;
|
|
|
|
virtual ProtocolIdType protocolIdType() const;
|
|
|
|
virtual quint32 protocolId(ProtocolIdType type) const;
|
|
|
|
virtual int fieldCount() const;
|
2009-04-27 11:51:44 -05:00
|
|
|
|
2009-12-28 02:31:28 -06:00
|
|
|
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);
|
2009-04-27 11:51:44 -05:00
|
|
|
|
2009-12-28 02:31:28 -06:00
|
|
|
virtual bool isProtocolFrameValueVariable() const;
|
2009-11-13 10:00:57 -06:00
|
|
|
|
2009-12-28 02:31:28 -06:00
|
|
|
virtual quint32 protocolFrameCksum(int streamIndex = 0,
|
|
|
|
CksumType cksumType = CksumIp) const;
|
2009-11-28 02:35:05 -06:00
|
|
|
|
2009-12-28 02:31:28 -06:00
|
|
|
virtual QWidget* configWidget();
|
|
|
|
virtual void loadConfigWidget();
|
|
|
|
virtual void storeConfigWidget();
|
2009-04-27 11:51:44 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|