. * --------------------------------------------------------------------- */ if (!defined('GLPI_ROOT')) { die("Sorry. You can't access this file directly"); } /// NetworkPortLocal class : local instantiation of NetworkPort. Among others, loopback /// (ie.: 127.0.0.1) /// @since 0.84 class NetworkPortLocal extends NetworkPortInstantiation { public $canHaveVLAN = false; public $haveMAC = false; static function getTypeName($nb = 0) { return __('Local loop port'); } }