Msg File src/inet/protocolelement/fragmentation/tag/FragmentTag.msg
Name | Type | Description |
---|---|---|
FragmentTag | class | (no description) |
Source code
// // Copyright (C) 2020 OpenSim Ltd. // // SPDX-License-Identifier: LGPL-3.0-or-later // import inet.common.INETDefs; import inet.common.TagBase; namespace inet; class FragmentTag extends TagBase { bool firstFragment = true; bool lastFragment = true; int fragmentNumber = 0; // -1 means unspecified int numFragments = 1; // -1 means unspecified }