~ubuntu-branches/ubuntu/trusty/net-snmp/trusty

« back to all changes in this revision

Viewing changes to include/net-snmp/library/parse.h

  • Committer: Bazaar Package Importer
  • Author(s): Steve Kowalik
  • Date: 2007-05-10 22:20:23 UTC
  • mto: (1.4.1 experimental)
  • mto: This revision was merged to the branch mainline in revision 11.
  • Revision ID: james.westby@ubuntu.com-20070510222023-3fr07xb9i17xvq32
Tags: upstream-5.3.1
ImportĀ upstreamĀ versionĀ 5.3.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
208
208
#define ANON    "anonymous#"
209
209
#define ANON_LEN  strlen(ANON)
210
210
 
 
211
    struct tree    *netsnmp_read_module(const char *);
 
212
#ifndef NETSNMP_CLEAN_NAMESPACE
211
213
    struct tree    *read_module(const char *);
 
214
#endif
212
215
    struct tree    *read_mib(const char *);
213
216
    struct tree    *read_all_mibs(void);
 
217
    int             netsnmp_unload_module(const char *name);
 
218
#ifndef NETSNMP_CLEAN_NAMESPACE
214
219
    int             unload_module(const char *name);
 
220
#endif
215
221
    void            unload_all_mibs(void);
216
222
    void            init_mib_internals(void);
217
223
    int             add_mibfile(const char*, const char*, FILE *);