1 //
2 // Copyright (c) 2010-2023 Antmicro
3 //
4 // This file is licensed under the MIT License.
5 // Full license text is available in 'licenses/MIT.txt'.
6 //
7 
8 namespace Antmicro.Renode.Network
9 {
10     public enum CRCMode
11     {
12         // do not compute a new CRC and do not try to use the CRC from the data
13         NoOperation,
14         // compute a CRC
15         Add,
16         // remove a CRC from the data and compute a new CRC
17         Replace,
18         // use the CRC from the data
19         Keep,
20     }
21 }
22