MySQL authentication with user@host, resolved compile errors

MySQL authentication with user@host, resolved compile errors
This commit is contained in:
MassimilianoPinto
2014-02-14 17:27:17 +01:00
parent 6a12e99001
commit 9b6ad904f6
5 changed files with 7 additions and 6 deletions

View File

@ -18,7 +18,6 @@
* Copyright SkySQL Ab 2013
*/
#include <service.h>
#include <gw.h>
/**

View File

@ -21,6 +21,7 @@
#include <buffer.h>
#include <gwbitmask.h>
#include <skygw_utils.h>
#include <netinet/in.h>
struct session;
struct server;
@ -46,6 +47,7 @@ struct service;
* 12/07/2013 Massimiliano Pinto Added auth entry point
* 15/07/2013 Massimiliano Pinto Added session entry point
* 16/07/2013 Massimiliano Pinto Added command type for dcb
* 07/02/2014 Massimiliano Pinto Added ipv4 data struct into for dcb
*
* @endverbatim
*/
@ -165,6 +167,7 @@ typedef struct dcb {
int fd; /**< The descriptor */
dcb_state_t state; /**< Current descriptor state */
char *remote; /**< Address of remote end */
struct sockaddr_in ipv4; /**< remote end IPv4 address */
void *protocol; /**< The protocol specific state */
struct session *session; /**< The owning session */
GWPROTOCOL func; /**< The functions for this descriptor */

View File

@ -53,8 +53,6 @@ char *gw_strend(register const char *s);
int do_read_dcb(DCB *dcb);
int do_read_10(DCB *dcb, uint8_t *buffer);
int MySQLWrite(DCB *dcb, GWBUF *queue);
int gw_write_backend_event(DCB *dcb);
int gw_read_backend_event(DCB *dcb);
int setnonblocking(int fd);
int gw_write(int fd, const void* buf, size_t nbytes);
int gw_getsockerrno(int fd);