~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to unittests/plugin/plugin_stubs.h

  • Committer: Brian Aker
  • Date: 2010-12-18 05:18:30 UTC
  • mto: This revision was merged to the branch mainline in revision 2009.
  • Revision ID: brian@tangent.org-20101218051830-lswb13hfiqbia74o
Adding user identifier that makes use of a shared ptr to handle concurrency
issues around looking at the state of a connection.

Show diffs side-by-side

added added

removed removed

Lines of Context:
231
231
    authenticate_return = value;
232
232
  }
233
233
 
234
 
  virtual bool authenticate(const drizzled::SecurityContext &sctx, const std::string &passwd)
 
234
  virtual bool authenticate(const drizzled::identifier::User &sctx, const std::string &passwd)
235
235
  {
236
236
    (void)sctx;
237
237
    (void)passwd;