Dependents:   Nucleo

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers snmp_agent_pdu.h Source File

snmp_agent_pdu.h

Go to the documentation of this file.
00001 /**
00002  * @file snmp_agent_pdu.h
00003  * @brief SNMP agent (PDU processing)
00004  *
00005  * @section License
00006  *
00007  * Copyright (C) 2010-2017 Oryx Embedded SARL. All rights reserved.
00008  *
00009  * This file is part of CycloneTCP Open.
00010  *
00011  * This program is free software; you can redistribute it and/or
00012  * modify it under the terms of the GNU General Public License
00013  * as published by the Free Software Foundation; either version 2
00014  * of the License, or (at your option) any later version.
00015  *
00016  * This program is distributed in the hope that it will be useful,
00017  * but WITHOUT ANY WARRANTY; without even the implied warranty of
00018  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00019  * GNU General Public License for more details.
00020  *
00021  * You should have received a copy of the GNU General Public License
00022  * along with this program; if not, write to the Free Software Foundation,
00023  * Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
00024  *
00025  * @author Oryx Embedded SARL (www.oryx-embedded.com)
00026  * @version 1.7.6
00027  **/
00028 
00029 #ifndef _SNMP_AGENT_PDU_H
00030 #define _SNMP_AGENT_PDU_H
00031 
00032 //Dependencies
00033 #include "core/net.h"
00034 #include "snmp/snmp_agent.h"
00035 
00036 //SNMP agent related functions
00037 error_t snmpProcessPdu(SnmpAgentContext *context);
00038 
00039 error_t snmpProcessGetRequestPdu(SnmpAgentContext *context);
00040 error_t snmpProcessGetBulkRequestPdu(SnmpAgentContext *context);
00041 error_t snmpProcessSetRequestPdu(SnmpAgentContext *context);
00042 
00043 error_t snmpFormatTrapPdu(SnmpAgentContext *context, SnmpVersion version,
00044    const char_t *username, uint_t genericTrapType, uint_t specificTrapCode,
00045    const SnmpTrapObject *objectList, uint_t objectListSize);
00046 
00047 error_t snmpFormatReportPdu(SnmpAgentContext *context, error_t errorIndication);
00048 
00049 #endif
00050