Skip to content
Snippets Groups Projects
Commit 1485aeb2 authored by g0dil's avatar g0dil
Browse files

Packet/DefaultBundle: Make IPv6PacketparserExtension_Fragment reserver fields private

Socket: Remove net/if.h include from NetDeviceController.hh
parent 1c6338a6
No related branches found
No related tags found
No related merge requests found
......@@ -46,14 +46,14 @@ namespace senf {
{
# include SENF_FIXED_PARSER()
SENF_PARSER_FIELD( nextHeader , UInt8Parser );
SENF_PARSER_FIELD( reserved1 , UInt8Parser );
SENF_PARSER_FIELD ( nextHeader , UInt8Parser );
SENF_PARSER_PRIVATE_FIELD ( reserved1 , UInt8Parser );
SENF_PARSER_BITFIELD( fragmentOffset, 13, unsigned );
SENF_PARSER_BITFIELD( reserved2, 2, unsigned );
SENF_PARSER_BITFIELD( moreFragments, 1, bool );
SENF_PARSER_BITFIELD ( fragmentOffset , 13, unsigned );
SENF_PARSER_PRIVATE_BITFIELD ( reserved2 , 2, unsigned );
SENF_PARSER_BITFIELD ( moreFragments , 1, bool );
SENF_PARSER_FIELD( id , UInt32Parser );
SENF_PARSER_FIELD ( id , UInt32Parser );
SENF_PARSER_FINALIZE(IPv6PacketParserExtension_Fragment);
};
......
......@@ -29,13 +29,14 @@
// Custom includes
#include <string>
#include <net/if.h>
#include "Protocols/Raw/MACAddress.hh"
//#include "NetdeviceController.mpp"
///////////////////////////////hh.p////////////////////////////////////////
struct ifreq;
namespace senf {
/** \brief Netdevice Controller
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment