~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/mysql_protocol/net_serv.h

  • Committer: Henrik Ingo
  • Date: 2011-08-29 12:24:27 UTC
  • mto: This revision was merged to the branch mainline in revision 2412.
  • Revision ID: henrik.ingo@avoinelama.fi-20110829122427-bj271mhsl4cq8nv2
Updated README
 - make sure links are up to date
 - add instructions to "apt-get build-dep drizzle" before first build from source

Show diffs side-by-side

added added

removed removed

Lines of Context:
53
53
  void set_write_timeout(uint32_t timeout);
54
54
  void set_read_timeout(uint32_t timeout);
55
55
  bool write(const void*, size_t);
56
 
  bool write_command(unsigned char command, data_ref header, data_ref body);
 
56
  bool write_command(unsigned char command,
 
57
    const unsigned char *header, size_t head_len,
 
58
    const unsigned char *packet, size_t len);
57
59
  uint32_t read();
58
60
};
59
61