components/net-snmp/sun/agent/modules/entityMib/entity.c
changeset 252 ee0fb1eabcbf
equal deleted inserted replaced
251:f527656d334f 252:ee0fb1eabcbf
       
     1 /*
       
     2  * Copyright (c) 2003, 2011, Oracle and/or its affiliates. All rights reserved.
       
     3  *
       
     4  * U.S. Government Rights - Commercial software. Government users are subject
       
     5  * to the Sun Microsystems, Inc. standard license agreement and applicable
       
     6  * provisions of the FAR and its supplements.
       
     7  *
       
     8  *
       
     9  * This distribution may include materials developed by third parties. Sun,
       
    10  * Sun Microsystems, the Sun logo and Solaris are trademarks or registered
       
    11  * trademarks of Sun Microsystems, Inc. in the U.S. and other countries.
       
    12  *
       
    13  */
       
    14 #include <net-snmp/net-snmp-config.h>
       
    15 #include <net-snmp/net-snmp-includes.h>
       
    16 #include <net-snmp/agent/net-snmp-agent-includes.h>
       
    17 #include "stdhdr.h"
       
    18 #include "entPhysicalTable.h"
       
    19 #include "entLogicalTable.h"
       
    20 #include "entLPMappingTable.h"
       
    21 #include "entAliasMappingTable.h"
       
    22 #include "entPhysicalContainsTable.h"
       
    23 #include "entLastChangeTime.h"
       
    24 
       
    25 
       
    26 void
       
    27 init_entity(void) 
       
    28 {
       
    29   init_entPhysicalTable();
       
    30   init_entLogicalTable();
       
    31   init_entLPMappingTable();
       
    32   init_entAliasMappingTable();
       
    33   init_entPhysicalContainsTable();
       
    34   init_entLastChangeTime();
       
    35 }