Moved noleafs_get_object_def() and noleafs_get_value() protos from mib2.c to snmp_structs.h

This commit is contained in:
christiaans 2006-08-15 07:28:43 +00:00
parent 8559f3e583
commit d734cd986c
2 changed files with 4 additions and 3 deletions

View File

@ -66,9 +66,6 @@
#define SNMP_SYSSERVICES ((1 << 6) | (1 << 3) | ((IP_FORWARD) << 2))
#endif
/** @todo export this in snmp_structs.h (for use in private mib) */
void noleafs_get_object_def(u8_t ident_len, s32_t *ident, struct obj_def *od);
void noleafs_get_value(struct obj_def *od, u16_t len, void *value);
static void system_get_object_def(u8_t ident_len, s32_t *ident, struct obj_def *od);
static void system_get_value(struct obj_def *od, u16_t len, void *value);

View File

@ -179,6 +179,10 @@ struct mib_external_node
/** export MIB tree from mib2.c */
extern const struct mib_array_node internet;
/** export for use in private mib */
void noleafs_get_object_def(u8_t ident_len, s32_t *ident, struct obj_def *od);
void noleafs_get_value(struct obj_def *od, u16_t len, void *value);
struct mib_node* snmp_search_tree(struct mib_node *node, u8_t ident_len, s32_t *ident, struct obj_def *object_def);
u8_t snmp_iso_prefix_tst(u8_t ident_len, s32_t *ident);