nds2-client - ClientUser  0.16.8
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Pages
nds_param_str.h
1 #ifndef NDS_PARAMETER_STRING_H
2 #define NDS_PARAMETER_STRING_H
3 
4 /* Generic prefix to use when reading a variable from the environment */
5 #define NDS_PARAM_ENV_PREFIX "NDS2_CLIENT_"
6 
7 /* Preference name relating to handling data on tape */
8 #define NDS_PARAM_ALLOW_DATA_ON_TAPE "ALLOW_DATA_ON_TAPE"
9 
10 /*
11  * For organizational purposes put items that are only used in the C++ bindings
12  * below here.
13  */
14 
15 /* Preference name relating to the gap handler to use */
16 #define NDS_PARAM_GAP_HANDLER "GAP_HANDLER"
17 
18 /* Iterate does not 'need' to work on full data set, set to false to return
19  * availble
20  * data and skip gaps. Set to true to use the configured gap handler. */
21 #define NDS_PARAM_ITERATE_GAPS "ITERATE_USE_GAP_HANDLERS"
22 
23 /*
24  * Should the nds1 connection be cycled after a number of commands.
25  */
26 #define NDS_CYCLE_NDS1_AFTER_N_COMMANDS "CYCLE_NDS1_AFTER_N_COMMANDS"
27 
28 /*
29  * Specifies a hostname to connect to
30  */
31 #define NDS_PARAM_HOSTNAME "HOSTNAME"
32 
33 /*
34  * Specifies a port to connect to
35  */
36 #define NDS_PARAM_PORT "PORT"
37 
38 /*
39  * Specifies a protocol version to connect with
40  */
41 #define NDS_PARAM_PROTOCOL_VERSION "PROTOCOL_VERSION"
42 
43 #endif /* NDS_PARAMETER_STRING_H */