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:
Diffstat (limited to 'apps/files_external/3rdparty/irodsphp/prods/src/packet/RP_MiscSvrInfo.class.php')
-rw-r--r--apps/files_external/3rdparty/irodsphp/prods/src/packet/RP_MiscSvrInfo.class.php17
1 files changed, 17 insertions, 0 deletions
diff --git a/apps/files_external/3rdparty/irodsphp/prods/src/packet/RP_MiscSvrInfo.class.php b/apps/files_external/3rdparty/irodsphp/prods/src/packet/RP_MiscSvrInfo.class.php
new file mode 100644
index 00000000000..65ee3580e97
--- /dev/null
+++ b/apps/files_external/3rdparty/irodsphp/prods/src/packet/RP_MiscSvrInfo.class.php
@@ -0,0 +1,17 @@
+<?php
+
+require_once(dirname(__FILE__) . "/../autoload.inc.php");
+
+class RP_MiscSvrInfo extends RODSPacket
+{
+ public function __construct($serverType = 0, $relVersion = 0, $apiVersion = 0,
+ $rodsZone = '')
+ {
+ $packlets = array("serverType" => $serverType, 'relVersion' => $relVersion,
+ 'apiVersion' => $apiVersion, 'rodsZone' => $rodsZone);
+ parent::__construct("MiscSvrInfo_PI", $packlets);
+ }
+
+}
+
+?> \ No newline at end of file