basic layout stuff
[CBFWR.git] / libcbfwr / comms.php
1 <?php
2 // C = msg key
3 // L = locking key
4 $message_key = ftok(realpath(dirname(__FILE__)), "c");
5 $locking_key = ftok(realpath(dirname(__FILE__)), "l");
6 $store_key = ftok(realpath(dirname(__FILE__)), "s");
7
8 echo "comms key: $message_key, $locking_key, $store_key\n";
9
10 ?>