added ping and rcmd commands
[spider.git] / perl / DXProtout.pm
index af833183846634a5dc528527eaa9e897b8b238fc..a5d5250b161014a817ce5d0c334035600018a18b 100644 (file)
@@ -93,7 +93,8 @@ sub pc17
 # Request init string
 sub pc18
 {
-  return "PC18^wot a load of twaddle^$DXProt::myprot_version^~";
+       my $info = DXCluster::cluster;
+       return "PC18^$info^$DXProt::myprot_version^~";
 }
 
 #
@@ -199,6 +200,20 @@ sub pc33
   return "PC33^$fromnode^$tonode^$stream^";
 }
 
+# remote cmd send
+sub pc34
+{
+       my($fromnode, $tonode, $msg) = @_;
+       return "PC34^$tonode^$fromnode^$msg^~";
+}
+
+# remote cmd reply
+sub pc35
+{
+       my($fromnode, $tonode, $msg) = @_;
+       return "PC35^$tonode^$fromnode^$msg^~";
+}
+
 # send all the DX clusters I reckon are connected
 sub pc38
 {
@@ -256,7 +271,7 @@ sub pc49
 # periodic update of users, plus keep link alive device (always H99)
 sub pc50
 {
-  my $me = DXCluster->get($main::mycall);
+  my $me = DXCluster->get_exact($main::mycall);
   my $n = $me->users ? $me->users : '0';
   return "PC50^$main::mycall^$n^H99^";
 }
@@ -264,7 +279,7 @@ sub pc50
 # generate pings
 sub pc51
 {
-  my ($self, $to, $from, $val) = @_;
+  my ($to, $from, $val) = @_;
   return "PC51^$to^$from^$val^";
 }
 1;