~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin_authentication.h

  • Committer: Monty Taylor
  • Date: 2008-09-16 00:00:48 UTC
  • mto: This revision was merged to the branch mainline in revision 391.
  • Revision ID: monty@inaugust.com-20080916000048-3rvrv3gv9l0ad3gs
Fixed copyright headers in drizzled/

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
 
 
6
3
 *
7
4
 *  Copyright (C) 2008 Brian Aker
8
5
 *
29
26
 
30
27
typedef struct authentication_st
31
28
{
32
 
  bool (*authenticate)(Session *session, const char *password);
 
29
  bool (*authenticate)(THD *thd, const char *password);
33
30
} authentication_st;
34
31
 
35
32
#endif /* DRIZZLED_PLUGIN_AUTHENTICATION_H */