~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to libdrizzleclient/options.h

  • Committer: Padraig O'Sullivan
  • Date: 2009-03-21 20:26:28 UTC
  • mto: (960.2.5 mordred)
  • mto: This revision was merged to the branch mainline in revision 961.
  • Revision ID: osullivan.padraig@gmail.com-20090321202628-nh6qsi825m4d4av6
Removing the queues.[h,cc] files from the mysys directory. The only place
where they are needed now is in the MyISAM storage engine. Thus, I moved the
files there and updated the files in the MyISAM storage engine
appropriately.

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
18
18
 */
19
19
 
20
 
#ifndef _libdrizzle_drizzle_options_h
21
 
#define _libdrizzle_drizzle_options_h
 
20
#ifndef LIBDRIZZLECLIENT_DRIZZLE_OPTIONS_H
 
21
#define LIBDRIZZLECLIENT_DRIZZLE_OPTIONS_H
 
22
 
 
23
#if !defined(__cplusplus)
 
24
# include <stdbool.h>
 
25
#endif
22
26
 
23
27
#ifdef  __cplusplus
24
28
extern "C" {
25
29
#endif
26
30
 
27
 
 
28
 
#include <stdbool.h>
29
 
 
30
31
enum drizzle_option
31
32
{
32
33
  DRIZZLE_OPT_CONNECT_TIMEOUT, DRIZZLE_OPT_COMPRESS, DRIZZLE_OPT_NAMED_PIPE,
33
34
  DRIZZLE_INIT_COMMAND, DRIZZLE_READ_DEFAULT_FILE, DRIZZLE_READ_DEFAULT_GROUP,
34
 
  DRIZZLE_OPT_LOCAL_INFILE,
35
35
  DRIZZLE_OPT_PROTOCOL, DRIZZLE_SHARED_MEMORY_BASE_NAME, DRIZZLE_OPT_READ_TIMEOUT,
36
36
  DRIZZLE_OPT_WRITE_TIMEOUT, DRIZZLE_OPT_USE_RESULT,
37
37
  DRIZZLE_OPT_USE_REMOTE_CONNECTION,
40
40
  DRIZZLE_OPT_SSL_VERIFY_SERVER_CERT
41
41
};
42
42
 
43
 
struct st_drizzle_options {
 
43
struct st_drizzleclient_options {
44
44
  unsigned int connect_timeout, read_timeout, write_timeout;
45
45
  unsigned int port;
46
46
  unsigned long client_flag;
80
80
}
81
81
#endif
82
82
 
83
 
#endif /* _libdrizzle_drizzle_options_h */
 
83
#endif /* LIBDRIZZLECLIENT_DRIZZLE_OPTIONS_H */