mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
postmerging fix (SCRUM)
This commit is contained in:
@ -95,7 +95,7 @@ my_socket vio_fd(Vio*vio);
|
|||||||
/*
|
/*
|
||||||
* Remote peer's address and name in text form.
|
* Remote peer's address and name in text form.
|
||||||
*/
|
*/
|
||||||
my_bool vio_peer_addr(Vio* vio, char *buf, u_int16_t *port);
|
my_bool vio_peer_addr(Vio* vio, char *buf, uint16 *port);
|
||||||
|
|
||||||
/* Remotes in_addr */
|
/* Remotes in_addr */
|
||||||
|
|
||||||
@ -224,7 +224,7 @@ struct st_vio
|
|||||||
my_bool (*is_blocking)(Vio*);
|
my_bool (*is_blocking)(Vio*);
|
||||||
int (*viokeepalive)(Vio*, my_bool);
|
int (*viokeepalive)(Vio*, my_bool);
|
||||||
int (*fastsend)(Vio*);
|
int (*fastsend)(Vio*);
|
||||||
my_bool (*peer_addr)(Vio*, gptr);
|
my_bool (*peer_addr)(Vio*, gptr, uint16*);
|
||||||
void (*in_addr)(Vio*, struct in_addr*);
|
void (*in_addr)(Vio*, struct in_addr*);
|
||||||
my_bool (*should_retry)(Vio*);
|
my_bool (*should_retry)(Vio*);
|
||||||
int (*vioclose)(Vio*);
|
int (*vioclose)(Vio*);
|
||||||
|
@ -204,7 +204,7 @@ my_socket vio_fd(Vio* vio)
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
my_bool vio_peer_addr(Vio * vio, char *buf, u_int16_t *port)
|
my_bool vio_peer_addr(Vio * vio, char *buf, uint16 *port)
|
||||||
{
|
{
|
||||||
return(0);
|
return(0);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user