mirror of
https://github.com/MariaDB/server.git
synced 2025-08-01 03:47:19 +03:00
post-review fix
This commit is contained in:
@ -150,8 +150,9 @@ void Listener_thread::run()
|
|||||||
/* accept may return -1 (failure or spurious wakeup) */
|
/* accept may return -1 (failure or spurious wakeup) */
|
||||||
if (client_fd >= 0) // connection established
|
if (client_fd >= 0) // connection established
|
||||||
{
|
{
|
||||||
Vio *vio= vio_new(client_fd, socket_index==0?VIO_TYPE_SOCKET:
|
Vio *vio= vio_new(client_fd, socket_index == 0 ?
|
||||||
VIO_TYPE_TCPIP, socket_index==0?1:0);
|
VIO_TYPE_SOCKET : VIO_TYPE_TCPIP,
|
||||||
|
socket_index == 0 ? 1 : 0);
|
||||||
if (vio != 0)
|
if (vio != 0)
|
||||||
handle_new_mysql_connection(vio);
|
handle_new_mysql_connection(vio);
|
||||||
else
|
else
|
||||||
@ -273,8 +274,8 @@ int Listener_thread::create_tcp_socket()
|
|||||||
}
|
}
|
||||||
|
|
||||||
#ifndef __WIN__
|
#ifndef __WIN__
|
||||||
int Listener_thread::create_unix_socket(struct sockaddr_un
|
int Listener_thread::
|
||||||
&unix_socket_address)
|
create_unix_socket(struct sockaddr_un &unix_socket_address)
|
||||||
{
|
{
|
||||||
int unix_socket= socket(AF_UNIX, SOCK_STREAM, 0);
|
int unix_socket= socket(AF_UNIX, SOCK_STREAM, 0);
|
||||||
if (unix_socket == INVALID_SOCKET)
|
if (unix_socket == INVALID_SOCKET)
|
||||||
|
Reference in New Issue
Block a user