16fea309f4b6d6f3cc2fbc924e3889d27f1ec835
[pengine.git] / unittests / commrecv.php
1 <?php 
2 require_once("../lib/lib.php");
3
4 $mn = new netCom(true);
5
6 $mn->go();
7 while(true) {
8         $mn->waitForConnection();
9         while(($msg = $mn->receiveMessage()) !== false) {
10                 print_r($msg);
11         }
12 }
13 ?>