2009-04-27 11:51:44 -05:00
|
|
|
#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;
|
2009-08-02 09:52:34 -05:00
|
|
|
UdpConfigForm *configForm;
|
2009-04-27 11:51:44 -05:00
|
|
|
enum udpfield
|
|
|
|
{
|
|
|
|
udp_srcPort = 0,
|
|
|
|
udp_dstPort,
|
|
|
|
udp_totLen,
|
|
|
|
udp_cksum,
|
|
|
|
|
|
|
|
udp_isOverrideTotLen,
|
|
|
|
udp_isOverrideCksum,
|
|
|
|
|
|
|
|
udp_fieldCount
|
|
|
|
};
|
|
|
|
|
|
|
|
public:
|
2009-10-14 10:16:56 -05:00
|
|
|
UdpProtocol(StreamBase *stream, AbstractProtocol *parent = 0);
|
2009-04-27 11:51:44 -05:00
|
|
|
virtual ~UdpProtocol();
|
|
|
|
|
2009-10-14 10:16:56 -05:00
|
|
|
static AbstractProtocol* createInstance(StreamBase *stream,
|
|
|
|
AbstractProtocol *parent = 0);
|
2009-08-02 09:52:34 -05:00
|
|
|
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-08-02 09:52:34 -05:00
|
|
|
virtual void protoDataCopyInto(OstProto::Protocol &protocol) const;
|
|
|
|
virtual void protoDataCopyFrom(const OstProto::Protocol &protocol);
|
2009-04-27 11:51:44 -05:00
|
|
|
|
|
|
|
virtual QString name() const;
|
|
|
|
virtual QString shortName() 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
|
|
|
virtual quint32 protocolId(ProtocolIdType type) const;
|
2009-04-27 11:51:44 -05:00
|
|
|
|
|
|
|
virtual int fieldCount() const;
|
|
|
|
|
2009-05-24 09:54:11 -05:00
|
|
|
virtual AbstractProtocol::FieldFlags fieldFlags(int index) const;
|
2009-04-27 11:51:44 -05:00
|
|
|
virtual QVariant fieldData(int index, FieldAttrib attrib,
|
|
|
|
int streamIndex = 0) const;
|
|
|
|
virtual bool setFieldData(int index, const QVariant &value,
|
|
|
|
FieldAttrib attrib = FieldValue);
|
|
|
|
|
2009-11-13 10:00:57 -06:00
|
|
|
virtual bool isProtocolFrameValueVariable() const;
|
|
|
|
|
2009-04-27 11:51:44 -05:00
|
|
|
virtual QWidget* configWidget();
|
|
|
|
virtual void loadConfigWidget();
|
|
|
|
virtual void storeConfigWidget();
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|