From b0f662fe93f1db0098f7b50306c2f084644788b1 Mon Sep 17 00:00:00 2001 From: Florin Coras Date: Thu, 27 Dec 2018 14:51:46 -0800 Subject: vcl/ldp: add write msg function and fine tuning Allows app to push data. Additionally, ensure reset/close replies are not sent unless vcl closes the session. Change-Id: Icbbf933cf57b55cfbcc7b802af0f83919a066f65 Signed-off-by: Florin Coras --- test/test_sctp.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'test/test_sctp.py') diff --git a/test/test_sctp.py b/test/test_sctp.py index e4f0bd97416..f30feda111a 100644 --- a/test/test_sctp.py +++ b/test/test_sctp.py @@ -62,13 +62,13 @@ class TestSCTP(VppTestCase): # Start builtin server and client uri = "sctp://" + self.loop0.local_ip4 + "/1234" - error = self.vapi.cli("test echo server appns 0 fifo-size 4 uri " + - uri) + error = self.vapi.cli("test echo server appns 0 fifo-size 4 " + + "no-echo uri " + uri) if error: self.logger.critical(error) self.assertEqual(error.find("failed"), -1) - error = self.vapi.cli("test echo client mbytes 10" + + error = self.vapi.cli("test echo client mbytes 10 no-return " + " appns 1" + " fifo-size 4" + " no-output test-bytes syn-timeout 3" + -- cgit 1.2.3-korg