All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] sctp_test: don't specifc the destination address when sendint
@ 2010-09-03  6:52 Shan Wei
  0 siblings, 0 replies; only message in thread
From: Shan Wei @ 2010-09-03  6:52 UTC (permalink / raw)
  To: linux-sctp



For multi-home mode, don't need to specific msg_name.
If msg_name is set, this will force sctp send data to the destination address
to which msg_name is pointed.
So, this patch will cause sctp to choose primary path to send data.

Signed-off-by: Shan Wei <shanwei@cn.fujitsu.com>
---
 src/apps/sctp_test.c |   10 ++++++++--
 1 files changed, 8 insertions(+), 2 deletions(-)

diff --git a/src/apps/sctp_test.c b/src/apps/sctp_test.c
index 7287d05..7922686 100644
--- a/src/apps/sctp_test.c
+++ b/src/apps/sctp_test.c
@@ -1005,8 +1005,14 @@ int send_r(int sk, int stream, int order, int send_size, int assoc_i)
 		}
 	}
 
-	outmsg.msg_name = &s_rem;
-       	outmsg.msg_namelen = sizeof(struct sockaddr_storage);
+	if (connectx_count != 0) {	
+		outmsg.msg_name = NULL;
+		outmsg.msg_namelen = 0;
+	}
+	else {
+		outmsg.msg_name = &s_rem;
+		outmsg.msg_namelen = sizeof(struct sockaddr_storage);
+	}
 	outmsg.msg_iov = &iov;
 	outmsg.msg_iovlen = 1;
 	outmsg.msg_control = outcmsg;
-- 
1.6.3.3

^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2010-09-03  6:52 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-09-03  6:52 [PATCH] sctp_test: don't specifc the destination address when sendint Shan Wei

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.