~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/mysql_protocol/net_serv.h

  • Committer: Eric Day
  • Date: 2010-03-16 08:18:07 UTC
  • mto: (1337.4.7)
  • mto: This revision was merged to the branch mainline in revision 1358.
  • Revision ID: eday@oddments.org-20100316081807-5y8zj1t2h390g5vm
Removed unused functions and extra complexity in MySQL module. Not rewriting any code here (yet?), just reshuffling to make it easier to manage.

Show diffs side-by-side

added added

removed removed

Lines of Context:
79
79
                         const unsigned char *packet, size_t len);
80
80
  uint32_t drizzleclient_net_read(NET *net);
81
81
  void drizzleclient_net_close(NET *net);
82
 
  bool drizzleclient_net_init_sock(NET * net, int sock, int flags,
83
 
                                   uint32_t buffer_length);
 
82
  bool drizzleclient_net_init_sock(NET * net, int sock, uint32_t buffer_length);
84
83
  bool drizzleclient_net_peer_addr(NET *net, char *buf, uint16_t *port, size_t buflen);
85
84
  void drizzleclient_net_keepalive(NET *net, bool flag);
86
85
  int drizzleclient_net_get_sd(NET *net);