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

« back to all changes in this revision

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

  • Committer: Bazaar Package Importer
  • Author(s): Steve Kowalik
  • Date: 2007-12-08 14:59:50 UTC
  • mfrom: (1.1.6 upstream)
  • Revision ID: james.westby@ubuntu.com-20071208145950-u1tykhpw56nyzqik
Tags: 5.4.1~dfsg-4ubuntu1
* Merge from debian unstable.
* Remaining Ubuntu changes:
  - Remove stop links from rc0 and rc6
  - Munge Maintainer field as per spec.
* Ubuntu changes dropped:
  - Symlink common files between the packages, CDBS ought to handle that
    for us automatically.
* The latest Debian changes has dropped history from the changelog. Slot in
  the Ubuntu changes as best I can. 

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef _SNMP_SERVICE_H
 
2
#define _SNMP_SERVICE_H
 
3
 
 
4
#ifdef __cplusplus
 
5
extern "C" {
 
6
#endif
 
7
 
 
8
/* Default port handling */
 
9
 
 
10
extern int
 
11
netsnmp_register_default_domain(const char* application, const char* domain);
 
12
 
 
13
extern const char*
 
14
netsnmp_lookup_default_domain(const char* application);
 
15
 
 
16
extern void
 
17
netsnmp_clear_default_domain(void);
 
18
 
 
19
extern int
 
20
netsnmp_register_default_target(const char* application, const char* domain,
 
21
                                const char* target);
 
22
 
 
23
extern const char*
 
24
netsnmp_lookup_default_target(const char* application, const char* domain);
 
25
 
 
26
extern void
 
27
netsnmp_clear_default_target(void);
 
28
 
 
29
extern void
 
30
netsnmp_register_service_handlers(void);
 
31
 
 
32
#ifdef __cplusplus
 
33
}
 
34
#endif
 
35
 
 
36
#endif /* _SNMP_SERVICE_H */