Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2013-07-12 17:08:13 +0400
committerThomas Müller <thomas.mueller@tmit.eu>2013-07-12 17:08:13 +0400
commit01378e19072b89c33af85a8a12a37f6c898e0941 (patch)
tree3454866ce19b9fc5eb48c7c3bf632bb767afb3d1 /apps/files_external/3rdparty/irodsphp/prods/src/packet/RP_TransStat.class.php
parent481bb831bb898399a01495fb6d3b07ca44a02f17 (diff)
incorporate development branch of ssh://irodsguest@code.renci.org/gitroot/irodsphp
Diffstat (limited to 'apps/files_external/3rdparty/irodsphp/prods/src/packet/RP_TransStat.class.php')
-rw-r--r--apps/files_external/3rdparty/irodsphp/prods/src/packet/RP_TransStat.class.php16
1 files changed, 16 insertions, 0 deletions
diff --git a/apps/files_external/3rdparty/irodsphp/prods/src/packet/RP_TransStat.class.php b/apps/files_external/3rdparty/irodsphp/prods/src/packet/RP_TransStat.class.php
new file mode 100644
index 00000000000..bb591f01343
--- /dev/null
+++ b/apps/files_external/3rdparty/irodsphp/prods/src/packet/RP_TransStat.class.php
@@ -0,0 +1,16 @@
+<?php
+
+require_once(dirname(__FILE__) . "/../autoload.inc.php");
+
+class RP_TransStat extends RODSPacket
+{
+ public function __construct($numThreads = 0, $bytesWritten = 0)
+ {
+ $packlets = array("numThreads" => $numThreads,
+ 'bytesWritten' => $bytesWritten);
+ parent::__construct("TransStat_PI", $packlets);
+ }
+
+}
+
+?> \ No newline at end of file