aboutsummaryrefslogtreecommitdiffstats
path: root/net/tipc
diff options
context:
space:
mode:
authorAllan Stephens <allan.stephens@windriver.com>2008-04-15 03:16:19 -0400
committerDavid S. Miller <davem@davemloft.net>2008-04-15 03:16:19 -0400
commit4934c69a384ede7d0c3009098184554da2063de6 (patch)
treed06f0505c484ff23f150636f6acf95a928da63fe /net/tipc
parent1819b83718dc3fe0aea0a2c3cd48d617e2003606 (diff)
[TIPC]: Add error check to detect non-blocking form of connect()
This patch causes TIPC to return an error indication if the non- blocking form of connect() is requested (which TIPC does not yet support). Signed-off-by: Allan Stephens <allan.stephens@windriver.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/tipc')
-rw-r--r--net/tipc/socket.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/net/tipc/socket.c b/net/tipc/socket.c
index 4c83aba575c5..348e4ff881ab 100644
--- a/net/tipc/socket.c
+++ b/net/tipc/socket.c
@@ -1260,6 +1260,11 @@ static int connect(struct socket *sock, struct sockaddr *dest, int destlen,
1260 if (sock->state == SS_READY) 1260 if (sock->state == SS_READY)
1261 return -EOPNOTSUPP; 1261 return -EOPNOTSUPP;
1262 1262
1263 /* For now, TIPC does not support the non-blocking form of connect() */
1264
1265 if (flags & O_NONBLOCK)
1266 return -EWOULDBLOCK;
1267
1263 /* Issue Posix-compliant error code if socket is in the wrong state */ 1268 /* Issue Posix-compliant error code if socket is in the wrong state */
1264 1269
1265 if (sock->state == SS_LISTENING) 1270 if (sock->state == SS_LISTENING)