libdoip  0.1.0
DoIP (Diagnostics over Internet Protocol) ISO 13400 C++17 Library
DoIPNegativeAck.h
Go to the documentation of this file.
1 #ifndef DOIPNEGATIVEACK_H
2 #define DOIPNEGATIVEACK_H
3 
4 #include <stdint.h>
5 
6 // Table 19: Negative Acknowledgement Codes
7 enum class DoIPNegativeAck : uint8_t {
8  IncorrectPatternFormat = 0, // Invalid header pattern
10  MessageTooLarge = 2,
11  OutOfMemory = 3,
13 };
14 
15 
16 #endif /* DOIPNEGATIVEACK_H */
DoIPNegativeAck