Author: jfclere
Date: Wed Jun 7 05:29:20 2006
New Revision: 412388
URL: http://svn.apache.org/viewvc?rev=412388&view=rev
Log:
PR 39741
Modified:
tomcat/connectors/trunk/jni/native/src/network.c
Modified: tomcat/connectors/trunk/jni/native/src/network.c
URL:
http://svn.apache.org/viewvc/tomcat/connectors/trunk/jni/native/src/network.c?rev=412388&r1=412387&r2=412388&view=diff
==============================================================================
--- tomcat/connectors/trunk/jni/native/src/network.c (original)
+++ tomcat/connectors/trunk/jni/native/src/network.c Wed Jun 7 05:29:20 2006
@@ -72,13 +72,13 @@
fprintf(stderr, "Sockets closed : %d\n", sp_closed);
fprintf(stderr, "Sockets cleared : %d\n", sp_cleared);
fprintf(stderr, "Total send calls : %d\n", sp_num_send);
- fprintf(stderr, "Minimum send lenght : %d\n", sp_min_send);
- fprintf(stderr, "Maximum send lenght : %d\n", sp_max_send);
- fprintf(stderr, "Average send lenght : %.2f\n",
(double)sp_tot_send/(double)sp_num_send);
+ fprintf(stderr, "Minimum send length : %d\n", sp_min_send);
+ fprintf(stderr, "Maximum send length : %d\n", sp_max_send);
+ fprintf(stderr, "Average send length : %.2f\n",
(double)sp_tot_send/(double)sp_num_send);
fprintf(stderr, "Total recv calls : %d\n", sp_num_recv);
- fprintf(stderr, "Minimum recv lenght : %d\n", sp_min_recv);
- fprintf(stderr, "Maximum recv lenght : %d\n", sp_max_recv);
- fprintf(stderr, "Average recv lenght : %.2f\n",
(double)sp_tot_recv/(double)sp_num_recv);
+ fprintf(stderr, "Minimum recv length : %d\n", sp_min_recv);
+ fprintf(stderr, "Maximum recv length : %d\n", sp_max_recv);
+ fprintf(stderr, "Average recv length : %.2f\n",
(double)sp_tot_recv/(double)sp_num_recv);
fprintf(stderr, "Receive timeouts : %d\n", sp_tmo_recv);
fprintf(stderr, "Receive errors : %d\n", sp_err_recv);
fprintf(stderr, "Receive resets : %d\n", sp_rst_recv);
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]