~ubuntu-branches/ubuntu/wily/net-snmp/wily-proposed

« back to all changes in this revision

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

  • Committer: Bazaar Package Importer
  • Author(s): Chuck Short
  • Date: 2010-06-28 14:59:36 UTC
  • mfrom: (1.2.3 upstream) (1.1.12 sid)
  • Revision ID: james.westby@ubuntu.com-20100628145936-cbiallic69pn044g
Tags: 5.4.3~dfsg-1ubuntu1
* Merge from debian unstable.  Remaining changes:
  - Set Ubuntu maintainer address.
  - net-snmp-config: Use bash. (LP: #104738)
  - Removed multiuser option when calling update-rc.d. (LP: #254261)
  - debian/snmpd.init: LSBify the init script.
  - debian/patches/52_fix_snmpcmd_1_typo.patch: Adjust a typo in snmpcmd.1
    (LP: #250459)
  - debian/snmpd.postinst: source debconf before doing work, LP: #589056
  - debian/snmp.preinst, debian/snmp.prerm: kill any/all processes owned by
    snmp user before install/uninstall, LP: #573391
  - Add apport hook (LP: #533603):
  - debian/{snmp,snmpd}.apport: Added.
  - debian/control: Build-depends on dh-apport.
  - debian/rules: 
    + Add --with apport.
    + override_dh_apport to install hook on snmpd package only.
 * Dropped patches:
   - debian/patches/99-fix-ubuntu-div0.patch: Fix dvision by zero.. 

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
 * @addtogroup agent
15
15
 * @addtogroup library *
16
16
 *
17
 
 * $Id: data_list.h 9583 2004-02-16 20:46:24Z hardaker $
 
17
 * $Id: data_list.h 18102 2010-02-08 19:47:17Z bvassche $
18
18
 *
19
19
 * External definitions for functions and variables in netsnmp_data_list.c.
20
20
 *
56
56
       Netsnmp_Free_List_Data *data_list_free_ptr;
57
57
    } netsnmp_data_list_saveinfo;
58
58
 
59
 
    NETSNMP_INLINE netsnmp_data_list * 
 
59
    netsnmp_data_list *
60
60
      netsnmp_create_data_list(const char *, void *, Netsnmp_Free_List_Data* );
61
61
    void            netsnmp_data_list_add_node(netsnmp_data_list **head,
62
62
                                               netsnmp_data_list *node);
70
70
    void            netsnmp_free_all_list_data(netsnmp_data_list *head);        /* multiple */
71
71
    int             netsnmp_remove_list_node(netsnmp_data_list **realhead,
72
72
                                             const char *name);
73
 
    NETSNMP_INLINE netsnmp_data_list *
 
73
    netsnmp_data_list *
74
74
    netsnmp_get_list_node(netsnmp_data_list *head,
75
75
                          const char *name);
76
76