From: David Howells Date: Mon, 22 Oct 2012 14:06:02 +0000 (+0100) Subject: ASN.1: Define indefinite length marker constant X-Git-Tag: next-20121025~53^2^2~1 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=20d4935943ab5936a755fd8df9836bbcc68af75c;p=karo-tx-linux.git ASN.1: Define indefinite length marker constant Define a constant to hold the marker value seen in an indefinite-length element. Signed-off-by: David Howells Signed-off-by: Rusty Russell --- diff --git a/include/linux/asn1.h b/include/linux/asn1.h index 5c3f4e4b9a23..eed6982860ba 100644 --- a/include/linux/asn1.h +++ b/include/linux/asn1.h @@ -64,4 +64,6 @@ enum asn1_tag { ASN1_LONG_TAG = 31 /* Long form tag */ }; +#define ASN1_INDEFINITE_LENGTH 0x80 + #endif /* _LINUX_ASN1_H */