~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin_authentication.h

  • Committer: Brian Aker
  • Date: 2008-10-06 06:47:29 UTC
  • Revision ID: brian@tangent.org-20081006064729-2i9mhjkzyvow9xsm
RemoveĀ uint.

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 */