~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to libdrizzle/drizzle_com.h

  • Committer: Brian Aker
  • Date: 2008-08-09 04:36:27 UTC
  • Revision ID: brian@tangent.org-20080809043627-zory1tydbjboleok
Cleanup of my_bool from extra and libdrizzle

Show diffs side-by-side

added added

removed removed

Lines of Context:
327
327
  unsigned int *return_status;
328
328
  unsigned char reading_or_writing;
329
329
  char save_char;
330
 
  my_bool compress;
 
330
  bool compress;
331
331
  /*
332
332
    Pointer to query object in query cache, do not equal NULL (0) for
333
333
    queries in cache that have not stored its results yet
467
467
 
468
468
typedef struct st_udf_init
469
469
{
470
 
  my_bool maybe_null;          /* 1 if function can return NULL */
 
470
  bool maybe_null;          /* 1 if function can return NULL */
471
471
  unsigned int decimals;       /* for real functions */
472
472
  unsigned long max_length;    /* For string functions */
473
473
  char *ptr;                   /* free pointer for function data */
474
 
  my_bool const_item;          /* 1 if function always returns the same value */
 
474
  bool const_item;          /* 1 if function always returns the same value */
475
475
  void *extension;
476
476
} UDF_INIT;
477
477
/* 
502
502
 
503
503
void make_scrambled_password(char *to, const char *password);
504
504
void scramble(char *to, const char *message, const char *password);
505
 
my_bool check_scramble(const char *reply, const char *message,
 
505
bool check_scramble(const char *reply, const char *message,
506
506
                       const unsigned char *hash_stage2);
507
507
void get_salt_from_password(unsigned char *res, const char *password);
508
508
void make_password_from_salt(char *to, const unsigned char *hash_stage2);