File: private_mib.h

package info (click to toggle)
lwip 2.2.1%2Bdfsg1-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 10,008 kB
  • sloc: ansic: 109,524; cs: 6,714; sh: 115; makefile: 112; perl: 81
file content (26 lines) | stat: -rw-r--r-- 345 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/**
 * @file
 * Exports Private lwIP MIB 
 */

#ifndef LWIP_HDR_PRIVATE_MIB_H
#define LWIP_HDR_PRIVATE_MIB_H

#include "lwip/apps/snmp_opts.h"

#include "lwip/apps/snmp_core.h"

#ifdef __cplusplus
extern "C" {
#endif

/* export MIB */
extern const struct snmp_mib mib_private;

void lwip_privmib_init(void);

#ifdef __cplusplus
}
#endif

#endif