From e676e681549b31596680a5cadb74bc4d9f56af67 Mon Sep 17 00:00:00 2001 From: Sean Hefty Date: Mon, 25 Jun 2012 14:19:54 -0700 Subject: [PATCH] rsocket: Handle other shutdown option Handle SHUT_RD and SHUT_WR shutdown options. In order to handle shutting down the send and receive sides separately, we break the connection state into multiple sub-states. This allows us to be partially connected (i.e. for either just reads or just writes). Support for SHUT_WR is needed to handle netperf properly, which shuts down a socket by having the client use SHUT_WR, followed by the server completing the disconnect with SHUT_RDWR. The following patch eliminates an error message from netperf: 'shutdown_control: no response received errno 95' Signed-off-by: Sean Hefty -- 2.45.2