~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/protocol.cc

  • Committer: Monty Taylor
  • Date: 2008-11-17 23:20:25 UTC
  • mto: (589.1.3 devel)
  • mto: This revision was merged to the branch mainline in revision 589.
  • Revision ID: monty@inaugust.com-20081117232025-01m5jfd4l9cn93kb
Removed field.h from common_includes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
630
630
}
631
631
 
632
632
 
 
633
bool Protocol::store(String *str)
 
634
{
 
635
  return store((char*) str->ptr(), str->length(), str->charset());
 
636
}
 
637
 
 
638
void Protocol::free()
 
639
{
 
640
  packet->free();
 
641
}
 
642
 
 
643
 
633
644
/****************************************************************************
634
645
  Functions to handle the simple (default) protocol where everything is
635
646
  This protocol is the one that is used by default between the MySQL server