~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/authentication.h

  • Committer: Brian Aker
  • Date: 2009-09-26 04:00:11 UTC
  • mfrom: (1126.12.1 trunk-nodebug)
  • Revision ID: brian@gaz-20090926040011-2qzxdcbpm1ibpkhl
Merge Lee

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
3
 *
4
 
 *  Copyright (C) 2008 Brian Aker
 
4
 *  Copyright (C) 2008 Sun Microsystems
5
5
 *
6
6
 *  This program is free software; you can redistribute it and/or modify
7
7
 *  it under the terms of the GNU General Public License as published by
22
22
#ifndef DRIZZLED_AUTHENTICATION_H
23
23
#define DRIZZLED_AUTHENTICATION_H
24
24
 
25
 
#include <drizzled/plugin_authentication.h>
 
25
#include <drizzled/plugin/authentication.h>
26
26
 
27
 
bool authenticate_user(THD *thd, const char *password);
28
 
int authentication_initializer(st_plugin_int *plugin);
29
 
int authentication_finalizer(st_plugin_int *plugin);
 
27
bool authenticate_user(Session *session, const char *password);
 
28
void add_authentication(Authentication *auth);
 
29
void remove_authentication(Authentication *auth);
30
30
 
31
31
#endif /* DRIZZLED_AUTHENTICATION_H */