Parse a TCP packet. More...
#include <senf/Packets/DefaultBundle/TCPPacket.hh>
Public Types | |
typedef UInt16Parser | source_t |
typedef UInt16Parser | destination_t |
typedef UInt32Parser | sequencenumber_t |
typedef UInt32Parser | acknowledgmentnumber_t |
typedef UInt16Parser | window_t |
typedef UInt16Parser | checksum_t |
typedef UInt16Parser | urgentpointer_t |
Public Types inherited from senf::PacketParserBase | |
typedef detail::packet::iterator | data_iterator |
Raw data iterator type. More... | |
typedef detail::packet::size_type | size_type |
Unsigned integral type. More... | |
typedef detail::packet::difference_type | difference_type |
Signed integral type. More... | |
typedef detail::packet::byte | byte |
Unsigned 8bit value, the raw value type. More... | |
typedef PacketData * | state_type |
Type of the 'state' parameter. More... | |
typedef PacketParserBase | parser_base_type |
Base type of the next parser. More... | |
Public Member Functions | |
UInt16Parser | source () const |
UInt16Parser | destination () const |
UInt32Parser | sequencenumber () const |
UInt32Parser | acknowledgmentnumber () const |
senf::UIntFieldParser<?,?+4 > | dataoffset () const |
senf::FlagParser<?> | urgf () const |
senf::FlagParser<?> | ackf () const |
senf::FlagParser<?> | pshf () const |
senf::FlagParser<?> | rstf () const |
senf::FlagParser<?> | synf () const |
senf::FlagParser<?> | finf () const |
UInt16Parser | window () const |
UInt16Parser | checksum () const |
UInt16Parser | urgentpointer () const |
void | init () |
boost::uint16_t | calcChecksum () const |
calculate (pseudo-)header checksum More... | |
bool | validateChecksum () const |
validate header checksum More... | |
Public Member Functions inherited from senf::PacketParserBase | |
data_iterator | i () const |
Return beginning of data to parse. More... | |
data_iterator | i (size_type offset) const |
Return iterator offset bytes from the start. More... | |
state_type | state () const |
Return state of this parser. More... | |
PacketData & | data () const |
Access the packets raw data container. More... | |
void | init () const |
Default implementation. More... | |
Protected Member Functions | |
senf::UIntFieldParser<?,?+6 > | reserved () const |
Protected Member Functions inherited from senf::PacketParserBase | |
ParserProtector | protect () const |
PacketParserBase (data_iterator i, state_type s) | |
Standard constructor. More... | |
PacketParserBase (data_iterator i, state_type s, size_type size) | |
Size checking constructor. More... | |
bool | check (size_type size) const |
Check size of data container. More... | |
void | validate (size_type size) const |
Validate size of data container. More... | |
template<class Parser > | |
Parser | parse (data_iterator i) const |
Create sub-parser. More... | |
template<class Parser , class Arg > | |
Parser | parse (Arg const &arg, data_iterator i) const |
Create sub-parser. More... | |
template<class Parser > | |
Parser | parse (size_type n) const |
Create sub-parser. More... | |
template<class Parser , class Arg > | |
Parser | parse (Arg const &arg, size_type n) const |
Create sub-parser. More... | |
void | defaultInit () const |
Default implementation. More... | |
Packet | packet () const |
Get packet this parser is parsing from. More... | |
void | resize (size_type oldSize, size_type newSize) |
Resize data container. More... | |
Parse a TCP packet.
Parser implementing the TCP header. The fields implemented are:
Definition at line 36 of file TCPPacket.hh.
Definition at line 43 of file TCPPacket.hh.
Definition at line 55 of file TCPPacket.hh.
Definition at line 41 of file TCPPacket.hh.
Definition at line 42 of file TCPPacket.hh.
Definition at line 40 of file TCPPacket.hh.
Definition at line 56 of file TCPPacket.hh.
Definition at line 54 of file TCPPacket.hh.
senf::FlagParser<?> senf::TCPPacketParser::ackf | ( | ) | const |
UInt32Parser senf::TCPPacketParser::acknowledgmentnumber | ( | ) | const |
boost::uint16_t senf::TCPPacketParser::calcChecksum | ( | ) | const |
calculate (pseudo-)header checksum
calculate and return the checksum of the (pseudo-)header
Definition at line 36 of file TCPPacket.cc.
UInt16Parser senf::TCPPacketParser::checksum | ( | ) | const |
senf::UIntFieldParser<?,?+ 4 > senf::TCPPacketParser::dataoffset | ( | ) | const |
UInt16Parser senf::TCPPacketParser::destination | ( | ) | const |
senf::FlagParser<?> senf::TCPPacketParser::finf | ( | ) | const |
|
inline |
Definition at line 65 of file TCPPacket.hh.
senf::FlagParser<?> senf::TCPPacketParser::pshf | ( | ) | const |
|
protected |
senf::FlagParser<?> senf::TCPPacketParser::rstf | ( | ) | const |
UInt32Parser senf::TCPPacketParser::sequencenumber | ( | ) | const |
UInt16Parser senf::TCPPacketParser::source | ( | ) | const |
senf::FlagParser<?> senf::TCPPacketParser::synf | ( | ) | const |
UInt16Parser senf::TCPPacketParser::urgentpointer | ( | ) | const |
senf::FlagParser<?> senf::TCPPacketParser::urgf | ( | ) | const |
|
inline |
validate header checksum
return true
if the checksum field is equal to the calculated checksum
Definition at line 77 of file TCPPacket.hh.
UInt16Parser senf::TCPPacketParser::window | ( | ) | const |