Allow user to disable content verification
diff --git a/js/testing/test-throughput-ws-pipeline.html b/js/testing/test-throughput-ws-pipeline.html
index f741fb0..aa3d64f 100644
--- a/js/testing/test-throughput-ws-pipeline.html
+++ b/js/testing/test-throughput-ws-pipeline.html
@@ -12,7 +12,8 @@
 	<script type="text/javascript">

 		//hostip = "131.179.196.232";

 		hostip = "localhost";

-		var ndncon = new NDN({port:9696,host:hostip});

+		//var ndncon = new NDN({port:9696,host:hostip});

+		var ndncon = new NDN({port:9696,host:hostip,verify:false});

         ndncon.transport.connectWebSocket(ndncon);

         

 ///////////////////////////////////////////////////////////////////////////////////////////////////////////

@@ -210,6 +211,10 @@
 				document.getElementById('content').innerHTML += "<p>Total number of dup segments: " + this.dups + "</p>";

 				document.getElementById('content').innerHTML += "<p>Total number of interest sent: " + this.interest_sent + "</p>";

 				document.getElementById('content').innerHTML += "<p>Total number of time-out interest: " + this.timed_out + "</p>";

+				

+				document.getElementById('content').innerHTML += "<p>SND_UNA: " + this.snd_una + "</p>";

+				document.getElementById('content').innerHTML += "<p>SND_WND: " + this.snd_wnd + "</p>";

+				document.getElementById('content').innerHTML += "<p>SND_NXT: " + this.snd_nxt + "</p>";

 				return Closure.RESULT_OK;

 			}