X-Git-Url: http://www.dxcluster.org/gitweb/gitweb.cgi?a=blobdiff_plain;f=perl%2FDXProtout.pm;h=b31eacdfe111942ded8607bc9759d85e1179a56c;hb=f47bc72134852f42fe03ab6afe91a9ba1b0ff705;hp=180ce526ef17357c67d474bc45c34b9994e0b368;hpb=782ad549b29a1efec023ebcde840073a4676d8e8;p=spider.git diff --git a/perl/DXProtout.pm b/perl/DXProtout.pm index 180ce526..b31eacdf 100644 --- a/perl/DXProtout.pm +++ b/perl/DXProtout.pm @@ -66,14 +66,15 @@ sub pc11 # create an announce message sub pc12 { - my ($call, $text, $tonode, $sysop, $wx) = @_; + my ($call, $text, $tonode, $sysop, $wx, $origin) = @_; my $hops = get_hops(12); - $sysop = ' ' if !$sysop; - $text = ' ' if !$text; - $wx = '0' if !$wx; - $tonode = '*' if !$tonode; + $origin ||= $main::mycall; + $sysop ||= ' '; + $text ||= ' '; + $wx ||= '0'; + $tonode ||= '*'; $text =~ s/\^/%5E/g; - return "PC12^$call^$tonode^$text^$sysop^$main::mycall^$wx^$hops^~"; + return "PC12^$call^$tonode^$text^$sysop^$origin^$wx^$hops^~"; } #