gem5  v20.1.0.0
etherpkt.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2002-2005 The Regents of The University of Michigan
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions are
7  * met: redistributions of source code must retain the above copyright
8  * notice, this list of conditions and the following disclaimer;
9  * redistributions in binary form must reproduce the above copyright
10  * notice, this list of conditions and the following disclaimer in the
11  * documentation and/or other materials provided with the distribution;
12  * neither the name of the copyright holders nor the names of its
13  * contributors may be used to endorse or promote products derived from
14  * this software without specific prior written permission.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27  */
28 
29 /* @file
30  * Reference counted class containing ethernet packet data
31  */
32 
33 #ifndef __DEV_NET_ETHERPKT_HH__
34 #define __DEV_NET_ETHERPKT_HH__
35 
36 #include <cassert>
37 #include <iosfwd>
38 #include <memory>
39 
40 #include "base/types.hh"
41 #include "sim/serialize.hh"
42 
43 /*
44  * Reference counted class containing ethernet packet data
45  */
47 {
48  public:
52  uint8_t *data;
53 
57  unsigned bufLength;
58 
62  unsigned length;
63 
71  unsigned simLength;
72 
74  : data(nullptr), bufLength(0), length(0), simLength(0)
75  { }
76 
77  explicit EthPacketData(unsigned size)
78  : data(new uint8_t[size]), bufLength(size), length(0), simLength(0)
79  { }
80 
81  ~EthPacketData() { if (data) delete [] data; }
82 
83  void serialize(const std::string &base, CheckpointOut &cp) const;
84  void unserialize(const std::string &base, CheckpointIn &cp);
85 };
86 
87 typedef std::shared_ptr<EthPacketData> EthPacketPtr;
88 
89 #endif // __DEV_NET_ETHERPKT_HH__
EthPacketData::length
unsigned length
Amount of space occupied by the payload in the data buffer.
Definition: etherpkt.hh:62
serialize.hh
X86ISA::base
Bitfield< 51, 12 > base
Definition: pagetable.hh:141
EthPacketData::serialize
void serialize(const std::string &base, CheckpointOut &cp) const
Definition: etherpkt.cc:40
EthPacketData::EthPacketData
EthPacketData()
Definition: etherpkt.hh:73
EthPacketData::~EthPacketData
~EthPacketData()
Definition: etherpkt.hh:81
cp
Definition: cprintf.cc:40
EthPacketData
Definition: etherpkt.hh:46
EthPacketData::bufLength
unsigned bufLength
Total size of the allocated data buffer.
Definition: etherpkt.hh:57
EthPacketData::data
uint8_t * data
Pointer to packet data will be deleted.
Definition: etherpkt.hh:52
EthPacketPtr
std::shared_ptr< EthPacketData > EthPacketPtr
Definition: etherpkt.hh:87
types.hh
CheckpointOut
std::ostream CheckpointOut
Definition: serialize.hh:63
EthPacketData::unserialize
void unserialize(const std::string &base, CheckpointIn &cp)
Definition: etherpkt.cc:49
EthPacketData::simLength
unsigned simLength
Effective length, used for modeling timing in the simulator.
Definition: etherpkt.hh:71
EthPacketData::EthPacketData
EthPacketData(unsigned size)
Definition: etherpkt.hh:77
CheckpointIn
Definition: serialize.hh:67

Generated on Wed Sep 30 2020 14:02:11 for gem5 by doxygen 1.8.17