~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to libdrizzle/handshake.c

  • Committer: Brian Aker
  • Date: 2011-02-27 04:21:54 UTC
  • mto: (2215.6.2 drizzle-trunk)
  • mto: This revision was merged to the branch mainline in revision 2231.
  • Revision ID: brian@tangent.org-20110227042154-mn2wtbd7rraphswo
First pass through in going over work for MySQL AUTH PLUGIN style support.

Show diffs side-by-side

added added

removed removed

Lines of Context:
515
515
    capabilities|= DRIZZLE_CAPABILITIES_INTERACTIVE;
516
516
  }
517
517
 
 
518
  if (con->options & DRIZZLE_CON_AUTH_PLUGIN)
 
519
  {
 
520
    capabilities|= DRIZZLE_CAPABILITIES_PLUGIN_AUTH;
 
521
  }
 
522
 
518
523
  capabilities&= ~(DRIZZLE_CAPABILITIES_COMPRESS | DRIZZLE_CAPABILITIES_SSL);
519
524
  if (con->db[0] == 0)
520
525
    capabilities&= ~DRIZZLE_CAPABILITIES_CONNECT_WITH_DB;