Removed EXPERIMENTAL status.

This commit is contained in:
christiaans
2006-10-13 12:00:35 +00:00
parent f6f6f11838
commit bc182cab7c
9 changed files with 25 additions and 36 deletions

View File

@@ -1,6 +1,6 @@
/**
* @file
* [EXPERIMENTAL] Abstract Syntax Notation One (ISO 8824, 8825) encoding
* Abstract Syntax Notation One (ISO 8824, 8825) encoding
*
* @todo not optimised (yet), favor correctness over speed, favor speed over size
*/
@@ -207,9 +207,6 @@ snmp_asn1_enc_type(struct pbuf *p, u16_t ofs, u8_t type)
* @param ofs points to the offset within the pbuf chain
* @param length is the host order length to be encoded
* @return ERR_OK if successfull, ERR_ARG if we can't (or won't) encode
*
* @todo also add octets_used instead of compares??
* @todo encode "type" in this function as well??
*/
err_t
snmp_asn1_enc_length(struct pbuf *p, u16_t ofs, u16_t length)

View File

@@ -1,6 +1,6 @@
/**
* @file
* [EXPERIMENTAL] Management Information Base II (RFC1213) objects and functions.
* Management Information Base II (RFC1213) objects and functions.
*
* @note the object identifiers for this MIB-2 and private MIB tree
* must be kept in sorted ascending order. This to ensure correct getnext operation.
@@ -2586,10 +2586,6 @@ atentry_get_object_def(u8_t ident_len, s32_t *ident, struct obj_def *od)
}
}
/**
* @todo the etharp_find_addr could be a lot smarter
* if our arp index tree provided pointers or index to the requested item
*/
static void
atentry_get_value(struct obj_def *od, u16_t len, void *value)
{

View File

@@ -1,6 +1,6 @@
/**
* @file
* [EXPERIMENTAL] MIB tree access/construction functions.
* MIB tree access/construction functions.
*/
/*

View File

@@ -1,9 +1,6 @@
/**
* @file
* [EXPERIMENTAL] SNMP input message processing (RFC1157).
*
* EXPERIMENTAL code, this is not how the agent should respond.
* This is for test purposes only, DO NOT USE THIS CODE IN REAL WORLD!!
* SNMP input message processing (RFC1157).
*/
/*

View File

@@ -1,6 +1,6 @@
/**
* @file
* [EXPERIMENTAL] SNMP output message processing (RFC1157).
* SNMP output message processing (RFC1157).
*
* Output responses and traps are build in two passes:
*

View File

@@ -1,6 +1,6 @@
/**
* @file
* [EXPERIMENTAL] Abstract Syntax Notation One (ISO 8824, 8825) codec.
* Abstract Syntax Notation One (ISO 8824, 8825) codec.
*/
/*

View File

@@ -1,6 +1,6 @@
/**
* @file
* [EXPERIMENTAL] SNMP Agent message handling structures.
* SNMP Agent message handling structures.
*/
/*
@@ -203,9 +203,6 @@ struct snmp_trap_header_lengths
#define SNMP_COMMUNITY_STR_LEN 64
struct snmp_msg_pstat
{
#if 0
struct snmp_msg_pstat *next;
#endif
/* lwIP local port (161) binding */
struct udp_pcb *pcb;
/* source IP address */
@@ -241,17 +238,10 @@ struct snmp_msg_pstat
struct snmp_varbind_root outvb;
/* output response lengths used in ASN encoding */
struct snmp_resp_header_lengths rhl;
#if SNMP_PRIVATE_MIB
/* private MIB event info */
struct private_msg pm;
#endif
};
struct snmp_msg_trap
{
#if 0
struct snmp_msg_trap *next;
#endif
/* lwIP local port (161) binding */
struct udp_pcb *pcb;
/* destination IP address in network order */

View File

@@ -1,6 +1,6 @@
/**
* @file
* [EXPERIMENTAL] Generic MIB tree structures.
* Generic MIB tree structures.
*
* @todo namespace prefixes
*/