summaryrefslogtreecommitdiff
path: root/src/lib/rrdFile.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/rrdFile.js')
-rw-r--r--src/lib/rrdFile.js5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/lib/rrdFile.js b/src/lib/rrdFile.js
index 35a892b..eabebc7 100644
--- a/src/lib/rrdFile.js
+++ b/src/lib/rrdFile.js
@@ -389,7 +389,10 @@ RRDHeader.prototype.getRRAInfo = function(idx) {
//
// Arguments:
// bf must be an object compatible with the BinaryFile interface
-function RRDFile(bf) {
+// file_options - currently no semantics... introduced for future expandability
+function RRDFile(bf,file_options) {
+ this.file_options=file_options;
+
var rrd_data=bf
this.rrd_header=new RRDHeader(rrd_data);