summaryrefslogtreecommitdiffstats
path: root/emergencyc.pl
diff options
context:
space:
mode:
authorDavid A. Madore <david+config@madore.org>2010-02-16 17:28:50 +0100
committerDavid A. Madore <david+config@madore.org>2010-02-16 17:28:50 +0100
commitc93beedc46c0495a45c449fc66a7eb04630567f4 (patch)
tree0289bcac33d9fb2d1a0d49ddad64f1e24493a5fd /emergencyc.pl
parent7427c871abee6768cdd1c12d0ddf23f13cb37197 (diff)
downloademergency-c93beedc46c0495a45c449fc66a7eb04630567f4.tar.gz
emergency-c93beedc46c0495a45c449fc66a7eb04630567f4.tar.bz2
emergency-c93beedc46c0495a45c449fc66a7eb04630567f4.zip
Work against the dreadful habit of concatenatingallmywords in identifiers.
Diffstat (limited to 'emergencyc.pl')
-rwxr-xr-xemergencyc.pl14
1 files changed, 7 insertions, 7 deletions
diff --git a/emergencyc.pl b/emergencyc.pl
index b8bebb6..296297f 100755
--- a/emergencyc.pl
+++ b/emergencyc.pl
@@ -10,8 +10,8 @@
# Options recognized:
#
-# -K <key> specifies the key to use; or -k <filename> specifies a
-# keyfile (the client will use the first line as key).
+# -K <key> specifies the key to use; or -k <filename> specifies a key
+# file (the client will use the first line as key).
#
# -h <hostname> and -p <number> specifies the host and port to connect
# to.
@@ -39,10 +39,10 @@ my $key;
if ( defined($opts{K}) ) {
$key = $opts{K};
} elsif ( defined($opts{k}) ) {
- open my $keyfile, "<", $opts{k} or die "Cannot open key file $opts{k}: $!";
- $key = <$keyfile>;
+ open my $key_file, "<", $opts{k} or die "Cannot open key file $opts{k}: $!";
+ $key = <$key_file>;
chomp $key;
- close $keyfile;
+ close $key_file;
}
die "No key specified (use -K or -k option)" unless defined($key);
@@ -65,8 +65,8 @@ sub curtime {
my $command = $ARGV[0] // "PING";
my $timestamp = $opts{t} // curtime;
my $validate = "$command|$timestamp";
-my $maccheck = hmac_sha256_hex($validate, $key);
-send $socket, "$command|$timestamp|$maccheck", 0, $haddr;
+my $mac_check = hmac_sha256_hex($validate, $key);
+send $socket, "$command|$timestamp|$mac_check", 0, $haddr;
my $buf;
my $sender;