2009-04-27 11:51:44 -05:00
|
|
|
#ifndef _TCP_H
|
|
|
|
#define _TCP_H
|
|
|
|
|
|
|
|
#include "abstractprotocol.h"
|
|
|
|
|
|
|
|
#include "tcp.pb.h"
|
|
|
|
#include "ui_tcp.h"
|
|
|
|
|
2009-05-24 09:54:11 -05:00
|
|
|
#define TCP_FLAG_URG 0x20
|
|
|
|
#define TCP_FLAG_ACK 0x10
|
|
|
|
#define TCP_FLAG_PSH 0x08
|
|
|
|
#define TCP_FLAG_RST 0x04
|
|
|
|
#define TCP_FLAG_SYN 0x02
|
|
|
|
#define TCP_FLAG_FIN 0x01
|
2009-04-27 11:51:44 -05:00
|
|
|
|
|
|
|
class TcpConfigForm : public QWidget, public Ui::tcp
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
TcpConfigForm(QWidget *parent = 0);
|
|
|
|
};
|
|
|
|
|
|
|
|
class TcpProtocol : public AbstractProtocol
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
OstProto::Tcp data;
|
2009-08-02 09:52:34 -05:00
|
|
|
TcpConfigForm *configForm;
|
2009-04-27 11:51:44 -05:00
|
|
|
enum tcpfield
|
|
|
|
{
|
|
|
|
tcp_src_port = 0,
|
|
|
|
tcp_dst_port,
|
|
|
|
tcp_seq_num,
|
|
|
|
tcp_ack_num,
|
|
|
|
tcp_hdrlen,
|
|
|
|
tcp_rsvd,
|
|
|
|
tcp_flags,
|
|
|
|
tcp_window,
|
|
|
|
tcp_cksum,
|
|
|
|
tcp_urg_ptr,
|
|
|
|
|
|
|
|
tcp_is_override_hdrlen,
|
|
|
|
tcp_is_override_cksum,
|
|
|
|
|
|
|
|
tcp_fieldCount
|
|
|
|
};
|
|
|
|
|
|
|
|
public:
|
2009-08-02 09:52:34 -05:00
|
|
|
TcpProtocol(StreamBase *stream);
|
2009-04-27 11:51:44 -05:00
|
|
|
virtual ~TcpProtocol();
|
|
|
|
|
2009-08-02 09:52:34 -05:00
|
|
|
static AbstractProtocol* createInstance(StreamBase *stream);
|
|
|
|
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);
|
|
|
|
|
|
|
|
virtual QWidget* configWidget();
|
|
|
|
virtual void loadConfigWidget();
|
|
|
|
virtual void storeConfigWidget();
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|