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

« back to all changes in this revision

Viewing changes to man/netsnmp_asn1_packet_parse.3

  • 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:
1
 
.TH "asn1 parsing and datatype manipulation routines." 3 "5 Sep 2008" "Version 5.4.2" "net-snmp" \" -*- nroff -*-
 
1
.TH "asn1 parsing and datatype manipulation routines." 3 "23 May 2010" "Version 5.4.3.pre1" "net-snmp" \" -*- nroff -*-
2
2
.ad l
3
3
.nh
4
4
.SH NAME
5
 
asn1 parsing and datatype manipulation routines. \- Note on.  
 
5
asn1 parsing and datatype manipulation routines. \- 
 
6
.PP
 
7
Note on.  
6
8
 
7
 
.PP
8
9
.SS "Defines"
9
10
 
10
11
.in +1c
93
94
.ti -1c
94
95
.RI "int \fBasn_realloc\fP (u_char **pkt, size_t *pkt_len)"
95
96
.br
 
97
.ti -1c
 
98
.RI "int \fBasn_realloc_rbuild_length\fP (u_char **pkt, size_t *pkt_len, size_t *offset, int r, size_t length)"
 
99
.br
 
100
.ti -1c
 
101
.RI "int \fBasn_realloc_rbuild_header\fP (u_char **pkt, size_t *pkt_len, size_t *offset, int r, u_char type, size_t length)"
 
102
.br
 
103
.ti -1c
 
104
.RI "int \fBasn_realloc_rbuild_int\fP (u_char **pkt, size_t *pkt_len, size_t *offset, int r, u_char type, const long *intp, size_t intsize)"
 
105
.br
 
106
.ti -1c
 
107
.RI "int \fBasn_realloc_rbuild_string\fP (u_char **pkt, size_t *pkt_len, size_t *offset, int r, u_char type, const u_char *str, size_t strlength)"
 
108
.br
 
109
.ti -1c
 
110
.RI "int \fBasn_realloc_rbuild_unsigned_int\fP (u_char **pkt, size_t *pkt_len, size_t *offset, int r, u_char type, const u_long *intp, size_t intsize)"
 
111
.br
 
112
.ti -1c
 
113
.RI "int \fBasn_realloc_rbuild_sequence\fP (u_char **pkt, size_t *pkt_len, size_t *offset, int r, u_char type, size_t length)"
 
114
.br
 
115
.ti -1c
 
116
.RI "int \fBasn_realloc_rbuild_objid\fP (u_char **pkt, size_t *pkt_len, size_t *offset, int r, u_char type, const oid *objid, size_t objidlength)"
 
117
.br
 
118
.ti -1c
 
119
.RI "int \fBasn_realloc_rbuild_null\fP (u_char **pkt, size_t *pkt_len, size_t *offset, int r, u_char type)"
 
120
.br
 
121
.ti -1c
 
122
.RI "int \fBasn_realloc_rbuild_bitstring\fP (u_char **pkt, size_t *pkt_len, size_t *offset, int r, u_char type, const u_char *str, size_t strlength)"
 
123
.br
 
124
.ti -1c
 
125
.RI "int \fBasn_realloc_rbuild_unsigned_int64\fP (u_char **pkt, size_t *pkt_len, size_t *offset, int r, u_char type, const struct \fBcounter64\fP *cp, size_t countersize)"
 
126
.br
96
127
.in -1c
97
128
.SH "Detailed Description"
98
129
.PP 
99
130
Note on. 
100
 
.PP
 
131
 
101
132
Re-allocating reverse ASN.1 encoder functions. Synopsis:
102
133
.PP
103
134
.PP
200
231
 
201
232
.SH "Define Documentation"
202
233
.PP 
203
 
.SS "#define CHECK_OVERFLOW_S(x, y)"
204
 
.PP
205
 
\fBValue:\fP
 
234
.SS "#define CHECK_OVERFLOW_S(x, y)"\fBValue:\fP
206
235
.PP
207
236
.nf
208
237
do { int trunc = 0;                     \
219
248
.fi
220
249
.PP
221
250
Definition at line 214 of file asn1.c.
222
 
.PP
223
 
Referenced by asn_build_int(), and asn_parse_int().
224
 
.SS "#define CHECK_OVERFLOW_U(x, y)"
225
 
.PP
226
 
\fBValue:\fP
 
251
.SS "#define CHECK_OVERFLOW_U(x, y)"\fBValue:\fP
227
252
.PP
228
253
.nf
229
254
do {                                    \
235
260
.fi
236
261
.PP
237
262
Definition at line 226 of file asn1.c.
238
 
.PP
239
 
Referenced by asn_build_objid(), asn_build_unsigned_int(), asn_build_unsigned_int64(), asn_parse_unsigned_int(), and asn_parse_unsigned_int64().
 
263
.SH "Author"
 
264
.PP 
 
265
Generated automatically by Doxygen for net-snmp from the source code.