basic layout stuff
[CBFWR.git] / libcbfwr / comms.php
diff --git a/libcbfwr/comms.php b/libcbfwr/comms.php
new file mode 100644 (file)
index 0000000..0098db1
--- /dev/null
@@ -0,0 +1,10 @@
+<?php
+// C = msg key
+// L = locking key
+$message_key = ftok(realpath(dirname(__FILE__)), "c");
+$locking_key = ftok(realpath(dirname(__FILE__)), "l");
+$store_key = ftok(realpath(dirname(__FILE__)), "s");
+
+echo "comms key: $message_key, $locking_key, $store_key\n";
+
+?>
\ No newline at end of file