1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113
|
/*
Copyright (C) 2010 Srivats P.
This file is part of "Ostinato"
This is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>
*/
#ifndef _IP6_H
#define _IP6_H
#include "abstractprotocol.h"
#include "ip6.pb.h"
/*
IPv6 Protocol Frame Format -
+-----+----------+-----------------------+
| Ver | TrfClass | FlowLabel |
| (4) | (8) | (20) |
+-----+-------------+---------+----------+
| Payload Length | NextHdr | HopLimit |
| (16) | (8) | (8) |
+-------------------+---------+----------+
| |
| Source Address |
| (128) |
| |
+-----+------+------+------+------+------+
| |
| Destination Address |
| (128) |
| |
+-----+------+------+------+------+------+
Figures in brackets represent field width in bits
*/
class Ip6Protocol : public AbstractProtocol
{
public:
enum ip6field
{
// Frame Fields
ip6_version = 0,
ip6_trafficClass,
ip6_flowLabel,
ip6_payloadLength,
ip6_nextHeader,
ip6_hopLimit,
ip6_srcAddress,
ip6_dstAddress,
// Meta Fields
ip6_isOverrideVersion,
ip6_isOverridePayloadLength,
ip6_isOverrideNextHeader,
ip6_srcAddrMode,
ip6_srcAddrCount,
ip6_srcAddrPrefix,
ip6_dstAddrMode,
ip6_dstAddrCount,
ip6_dstAddrPrefix,
ip6_fieldCount
};
Ip6Protocol(StreamBase *stream, AbstractProtocol *parent = 0);
virtual ~Ip6Protocol();
static AbstractProtocol* createInstance(StreamBase *stream,
AbstractProtocol *parent = 0);
virtual quint32 protocolNumber() const;
virtual void protoDataCopyInto(OstProto::Protocol &protocol) const;
virtual void protoDataCopyFrom(const OstProto::Protocol &protocol);
virtual ProtocolIdType protocolIdType() const;
virtual quint32 protocolId(ProtocolIdType type) const;
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 int protocolFrameVariableCount() const;
virtual quint32 protocolFrameCksum(int streamIndex = 0,
CksumType cksumType = CksumIp, CksumFlags cksumFlags = 0) const;
virtual bool hasErrors(QStringList *errors = nullptr) const;
private:
OstProto::Ip6 data;
};
#endif
|