I think I have most the SSID probs cracked.
[spider.git] / perl / DXProtout.pm
index af833183846634a5dc528527eaa9e897b8b238fc..fb86ee2e67273d996176fa31b8ae4b4ac54981ad 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^";
 }