mldonkey-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Mldonkey-commits] Changes to mldonkey/src/utils/net/tcpClientSocket.ml


From: mldonkey-commits
Subject: [Mldonkey-commits] Changes to mldonkey/src/utils/net/tcpClientSocket.ml
Date: Sun, 16 Oct 2005 16:43:49 -0400

Index: mldonkey/src/utils/net/tcpClientSocket.ml
diff -u mldonkey/src/utils/net/tcpClientSocket.ml:1.9 
mldonkey/src/utils/net/tcpClientSocket.ml:1.10
--- mldonkey/src/utils/net/tcpClientSocket.ml:1.9       Tue Oct 11 16:56:33 2005
+++ mldonkey/src/utils/net/tcpClientSocket.ml   Sun Oct 16 20:42:55 2005
@@ -264,12 +264,11 @@
 (*          if t.monitored then begin
               lprintf "write: direct written %d" nw; lprint_newline (); 
 end; *)
-          tcp_uploaded_bytes := Int64.add !tcp_uploaded_bytes (Int64.of_int 
nw);
+          tcp_uploaded_bytes := !tcp_uploaded_bytes ++ (Int64.of_int nw);
           (match t.write_control with
               None -> ()
             | Some bc ->
-                bc.moved_bytes <-
-                Int64.add bc.moved_bytes (Int64.of_int nw));
+                bc.moved_bytes <- bc.moved_bytes ++ (Int64.of_int nw));
           t.nwrite <- t.nwrite + nw;
           if nw = 0 then (close t "closed on write"; pos2) else
             pos1 + nw
@@ -349,11 +348,10 @@
           raise e
     
     in
-    tcp_downloaded_bytes := Int64.add !tcp_downloaded_bytes (Int64.of_int 
nread);
+    tcp_downloaded_bytes := !tcp_downloaded_bytes ++ (Int64.of_int nread);
     (match t.read_control with
         None -> () | Some bc ->
-          bc.moved_bytes <-
-          Int64.add bc.moved_bytes (Int64.of_int nread));        
+          bc.moved_bytes <- bc.moved_bytes ++ (Int64.of_int nread));        
     
     t.nread <- t.nread + nread;
     if nread = 0 then begin
@@ -391,12 +389,11 @@
 
 (*            if t.monitored then
 (lprintf "written %d" nw; lprint_newline ()); *)
-        tcp_uploaded_bytes := Int64.add !tcp_uploaded_bytes (Int64.of_int nw);
+        tcp_uploaded_bytes := !tcp_uploaded_bytes ++ (Int64.of_int nw);
         (match t.write_control with
             None -> ()
           | Some bc ->
-              bc.moved_bytes <-
-              Int64.add bc.moved_bytes (Int64.of_int nw));        
+              bc.moved_bytes <- bc.moved_bytes ++ (Int64.of_int nw));        
         t.nwrite <- t.nwrite + nw;
         b.len <- b.len - nw;
         b.pos <- b.pos + nw;




reply via email to

[Prev in Thread] Current Thread [Next in Thread]