comparison doc/ucis.ano/bgp_graph/path_list_to_xml.php @ 28:4dbe5bf653bb draft

Added bgp graph scripts
author ivo <ivo@UFO-Net.nl>
date Thu, 10 Jun 2010 00:15:51 +0200
parents
children
comparison
equal deleted inserted replaced
27:26b849b22eaa 28:4dbe5bf653bb
1 #!/usr/bin/php
2 <?php
3 $nodes = array();
4
5 $file = STDIN;
6
7 while (!feof($file)) {
8 $line = stream_get_line($file, 1024, "\n");
9 if ($line === NULL) break;
10 if (!strlen($line)) continue;
11 $pathnodes = explode(' ', $line);
12 $prevnode = NULL;
13 foreach ($pathnodes as $node) {
14 if ($node && $prevnode) print('<link from="'.$node.'" to="'.$prevnode.'" total="1" />'."\n");
15 $prevnode = $node;
16 }
17 }