Ignore:
Timestamp:
Apr 16, 2010, 2:15:06 PM (15 years ago)
Author:
Pieter Naber
Message:

Added bandwith maximum en usage to lines. Just random numbers, needs work in a following project.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/inc/KMLFile.class.php

    r7777 r7788  
    297297                                        $this->NetworkList->add($network);
    298298
     299                                        // TODO: For this project we'll use random numbers.
     300                                        // In a following project this can be adjusted
     301                                        $bandwithMax = rand(0, 200);
     302                                        $bandwithUsage = rand(0, $bandwithMax);
     303                                       
    299304                                        $data = '
    300305                                                <Data name="netmaskDecimal">
     
    336341                                                <Data name="hosts">
    337342                                                        <value>' . $network->numberHosts . '</value>
     343                                                </Data>
     344                                                <Data name="bandwidthMax">
     345                                                        <value>' . $bandwithMax . '</value>
     346                                                </Data>
     347                                                <Data name="bandwidthUsage">
     348                                                        <value>' . $bandwithUsage . '</value>
    338349                                                </Data>';
    339350
Note: See TracChangeset for help on using the changeset viewer.