|
@@ -23,6 +23,8 @@
|
|
* corresponds to the end of event in the packet. Out of IEC 61883.
|
|
* corresponds to the end of event in the packet. Out of IEC 61883.
|
|
* @CIP_WRONG_DBS: Only for in-stream. The value of dbs is wrong in in-packets.
|
|
* @CIP_WRONG_DBS: Only for in-stream. The value of dbs is wrong in in-packets.
|
|
* The value of data_block_quadlets is used instead of reported value.
|
|
* The value of data_block_quadlets is used instead of reported value.
|
|
|
|
+ * @SKIP_DBC_ZERO_CHECK: Only for in-stream. Packets with zero in dbc is
|
|
|
|
+ * skipped for detecting discontinuity.
|
|
*/
|
|
*/
|
|
enum cip_flags {
|
|
enum cip_flags {
|
|
CIP_NONBLOCKING = 0x00,
|
|
CIP_NONBLOCKING = 0x00,
|
|
@@ -31,6 +33,7 @@ enum cip_flags {
|
|
CIP_EMPTY_WITH_TAG0 = 0x04,
|
|
CIP_EMPTY_WITH_TAG0 = 0x04,
|
|
CIP_DBC_IS_END_EVENT = 0x08,
|
|
CIP_DBC_IS_END_EVENT = 0x08,
|
|
CIP_WRONG_DBS = 0x10,
|
|
CIP_WRONG_DBS = 0x10,
|
|
|
|
+ CIP_SKIP_DBC_ZERO_CHECK = 0x20,
|
|
};
|
|
};
|
|
|
|
|
|
/**
|
|
/**
|