~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/mysql_protocol/mysql_protocol.cc

  • Committer: Brian Aker
  • Date: 2011-02-22 22:57:45 UTC
  • mto: (2194.4.1 drizzle-build)
  • mto: This revision was merged to the branch mainline in revision 2197.
  • Revision ID: brian@tangent.org-20110222225745-973fbdcutp2m1w0h
Add in KILL protocol support.

Show diffs side-by-side

added added

removed removed

Lines of Context:
275
275
      (*l_packet)[0]= (unsigned char) COM_SHUTDOWN;
276
276
      break;
277
277
 
 
278
    case 12: /* KILL */
 
279
      (*l_packet)[0]= (unsigned char) COM_KILL;
 
280
      break;
 
281
 
278
282
    case 14: /* PING */
279
283
      (*l_packet)[0]= (unsigned char) COM_PING;
280
284
      break;