annotate doc/ucis.ano/bgp_graph/path_list_to_xml.php @ 218:266bc1c16026
draft
Assignments for harald
ip 1.0.169.0/24
as 169
author |
harald <p1ano@evermin.(none)> |
date |
Sun, 24 Oct 2010 08:06:45 +0000 |
parents |
4dbe5bf653bb |
children |
|
rev |
line source |
28
|
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 } |