isnecure send/receive now works... next, secure
[pengine.git] / unittests / commsend.php
1 <?php
2 require_once("../lib/lib.php");
3
4 $mn = new netCom();
5 $mn->go();
6
7 $array["asdf"] = "message";
8 $array["other"] = "moogie";
9 for($i = 0; $i < 10; $i++) {
10         $array["bl"] = $i;
11         $mn->sendMessage($array);
12 }
13 ?>