~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin_authentication.h

  • Committer: mordred
  • Date: 2008-11-01 00:46:20 UTC
  • mto: (572.1.1 devel) (575.1.1 devel)
  • mto: This revision was merged to the branch mainline in revision 573.
  • Revision ID: mordred@opensolaris-20081101004620-vd0kzsl9k40hvf4p
Some updates to dtrace support.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
2
 *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
 
3
 
 
4
 *  Definitions required for Authentication plugin 
 
5
 
3
6
 *
4
7
 *  Copyright (C) 2008 Brian Aker
5
8
 *
26
29
 
27
30
typedef struct authentication_st
28
31
{
29
 
  bool (*authenticate)(THD *thd, const char *password);
 
32
  bool (*authenticate)(Session *session, const char *password);
30
33
} authentication_st;
31
34
 
32
35
#endif /* DRIZZLED_PLUGIN_AUTHENTICATION_H */