/* **************************************************************************** * PROGRAM MODULE * * $Workfile: Underlayer.cpp $ * $Author: CBu $ * $Date: 2008/07/29 $ * * Copyright (C) 2008 by SPiDCOM Technologies All rights reserved. * ***************************************************************************** */ #include "mib-interface.h" /* * GET/SET METHODS */ /* SARFT MIB */ // GENERAL MIB // MasterAdminGroup /****************************************************************************** * * mib_get_admin_ems_ip_address * ******************************************************************************/ int mib_get_admin_ems_ip_address ( char *get_value ) { if (NULL == get_value) { return -1; } //TODO return 0; } /****************************************************************************** * * mib_set_admin_ems_ip_address * ******************************************************************************/ int mib_set_admin_ems_ip_address ( const char *set_value ) { if (NULL == set_value) { return -1; } // TODO return 0; } // MacGroup /****************************************************************************** * * mib_get_mac_broadcast_restriction * ******************************************************************************/ int mib_get_mac_broadcast_restriction ( long *get_value ) { if (NULL == get_value) { return -1; } // TODO return 0; } /****************************************************************************** * * mib_set_mac_broadcast_restriction * ******************************************************************************/ int mib_set_mac_broadcast_restriction ( long set_value ) { // TODO return 0; } /****************************************************************************** * * mib_get_mac_unknown_restriction * ******************************************************************************/ int mib_get_mac_unknown_restriction ( long *get_value ) { if (NULL == get_value) { return -1; } // TODO return 0; } /****************************************************************************** * * mib_set_mac_unknown_restriction * ******************************************************************************/ int mib_set_mac_unknown_restriction ( long set_value ) { // TODO return 0; }