Commit 28f865b1 authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

rpcrt4: Add close_read implementation for TCP connections.

parent 29f0b282
......@@ -1461,7 +1461,8 @@ static int rpcrt4_conn_tcp_close(RpcConnection *conn)
static void rpcrt4_conn_tcp_close_read(RpcConnection *conn)
{
/* FIXME */
RpcConnection_tcp *connection = (RpcConnection_tcp *) conn;
shutdown(connection->sock, SD_RECEIVE);
}
static void rpcrt4_conn_tcp_cancel_call(RpcConnection *conn)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment