We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d590a68 + ca00c69 commit da1ab91Copy full SHA for da1ab91
src/BER.h
@@ -7,26 +7,32 @@
7
#ifdef __has_include
8
#if __has_include("SNMPcfg.h")
9
#include "SNMPcfg.h"
10
-#else
+#endif
11
12
+
13
/**
14
* @def SNMP_STREAM
15
* @brief Defines read and write operations.
16
*/
17
+#ifndef SNMP_STREAM
18
#define SNMP_STREAM 1
19
20
21
22
* @def SNMP_VECTOR
23
* @brief Defines storage for ArrayBER.
24
25
+#ifndef SNMP_VECTOR
26
#define SNMP_VECTOR 0
27
28
29
30
* @def SNMP_CAPACITY
31
* @brief Defines capacity of SequenceBER.
32
33
+#ifndef SNMP_CAPACITY
34
#define SNMP_CAPACITY 6
35
#endif
-#endif
36
37
#if SNMP_STREAM
38
#include <Stream.h>
0 commit comments