irspy_connect() and irspy_seach_pqf() pass their options hashes
authorMike Taylor <mike@indexdata.com>
Wed, 25 Oct 2006 10:52:04 +0000 (10:52 +0000)
committerMike Taylor <mike@indexdata.com>
Wed, 25 Oct 2006 10:52:04 +0000 (10:52 +0000)
through into the Task constructors.

lib/ZOOM/IRSpy/Connection.pm

index 86a8f84..f3cc3d6 100644 (file)
@@ -1,4 +1,4 @@
-# $Id: Connection.pm,v 1.4 2006-10-12 16:54:13 mike Exp $
+# $Id: Connection.pm,v 1.5 2006-10-25 10:52:04 mike Exp $
 
 package ZOOM::IRSpy::Connection;
 
@@ -104,18 +104,18 @@ sub log {
 
 sub irspy_connect {
     my $this = shift();
-    my($udata, %cb) = @_;
+    my($udata, $options, %cb) = @_;
 
-    my $task = new ZOOM::IRSpy::Task::Connect($this, $udata, %cb);
+    my $task = new ZOOM::IRSpy::Task::Connect($this, $udata, $options, %cb);
     $this->add_task($task);
 }
 
 
 sub irspy_search_pqf {
     my $this = shift();
-    my($query, $udata, %cb) = @_;
+    my($query, $udata, $options, %cb) = @_;
 
-    my $task = new ZOOM::IRSpy::Task::Search($query, $this, $udata, %cb);
+    my $task = new ZOOM::IRSpy::Task::Search($query, $this, $udata, $options, %cb);
     $this->add_task($task);
 }