From 7a5cb21056020085d5c41dfc1d81be929625df0a Mon Sep 17 00:00:00 2001 From: christiaans Date: Fri, 7 Jul 2006 11:33:36 +0000 Subject: [PATCH] Fixed (experi)mental typo. --- src/core/snmp/asn1_dec.c | 2 +- src/core/snmp/asn1_enc.c | 2 +- src/core/snmp/mib2.c | 2 +- src/core/snmp/msg_in.c | 6 +++--- src/core/snmp/msg_out.c | 2 +- src/include/lwip/snmp_asn1.h | 2 +- src/include/lwip/snmp_msg.h | 2 +- 7 files changed, 9 insertions(+), 9 deletions(-) diff --git a/src/core/snmp/asn1_dec.c b/src/core/snmp/asn1_dec.c index 064775c5..c8514967 100644 --- a/src/core/snmp/asn1_dec.c +++ b/src/core/snmp/asn1_dec.c @@ -1,6 +1,6 @@ /** * @file - * [EXPIRIMENTAL] Abstract Syntax Notation One (ISO 8824, 8825) decoding + * [EXPERIMENTAL] Abstract Syntax Notation One (ISO 8824, 8825) decoding * * @todo not optimised (yet), favor correctness over speed, favor speed over size */ diff --git a/src/core/snmp/asn1_enc.c b/src/core/snmp/asn1_enc.c index 279f7c1f..84b23914 100644 --- a/src/core/snmp/asn1_enc.c +++ b/src/core/snmp/asn1_enc.c @@ -1,6 +1,6 @@ /** * @file - * [EXPIRIMENTAL] Abstract Syntax Notation One (ISO 8824, 8825) encoding + * [EXPERIMENTAL] Abstract Syntax Notation One (ISO 8824, 8825) encoding * * @todo not optimised (yet), favor correctness over speed, favor speed over size */ diff --git a/src/core/snmp/mib2.c b/src/core/snmp/mib2.c index b4888466..76142df9 100644 --- a/src/core/snmp/mib2.c +++ b/src/core/snmp/mib2.c @@ -1,6 +1,6 @@ /** * @file - * [EXPIRIMENTAL] Management Information Base II (RFC1213) objects and functions + * [EXPERIMENTAL] Management Information Base II (RFC1213) objects and functions */ /* diff --git a/src/core/snmp/msg_in.c b/src/core/snmp/msg_in.c index 22d658ed..28b9ebb3 100644 --- a/src/core/snmp/msg_in.c +++ b/src/core/snmp/msg_in.c @@ -1,8 +1,8 @@ /** * @file - * [EXPIRIMENTAL] SNMP input message processing (RFC1157). + * [EXPERIMENTAL] SNMP input message processing (RFC1157). * - * EXPIRIMENTAL dumb echo, this is not how the agent should respond. + * EXPERIMENTAL dumb echo, this is not how the agent should respond. * This is for test purposes only, DO NOT USE THIS CODE IN REAL WORLD!! */ @@ -160,7 +160,7 @@ snmp_recv(void *arg, struct udp_pcb *pcb, struct pbuf *p, struct ip_addr *addr, LWIP_DEBUGF(SNMP_MSG_DEBUG, ("snmp_recv varbind cnt=%"U16_F"\n",(u16_t)msg_ps->invb.count)); - /** @todo EXPIRIMENTAL dumb echo, this is not how the agent should respond. + /** @todo EXPERIMENTAL dumb echo, this is not how the agent should respond. This is for test purposes only, do not use this in real world!! */ msg_ps->outvb = msg_ps->invb; err_ret = snmp_send_response(msg_ps); diff --git a/src/core/snmp/msg_out.c b/src/core/snmp/msg_out.c index 9368080e..09049feb 100644 --- a/src/core/snmp/msg_out.c +++ b/src/core/snmp/msg_out.c @@ -1,6 +1,6 @@ /** * @file - * [EXPIRIMENTAL] SNMP output message processing (RFC1157). + * [EXPERIMENTAL] SNMP output message processing (RFC1157). * * Output responses and traps are build in two passes: * diff --git a/src/include/lwip/snmp_asn1.h b/src/include/lwip/snmp_asn1.h index 56c71bec..3df01b14 100644 --- a/src/include/lwip/snmp_asn1.h +++ b/src/include/lwip/snmp_asn1.h @@ -1,6 +1,6 @@ /** * @file - * [EXPIRIMENTAL] Abstract Syntax Notation One (ISO 8824, 8825) codec. + * [EXPERIMENTAL] Abstract Syntax Notation One (ISO 8824, 8825) codec. */ /* diff --git a/src/include/lwip/snmp_msg.h b/src/include/lwip/snmp_msg.h index 005d0a05..1b61cc2f 100644 --- a/src/include/lwip/snmp_msg.h +++ b/src/include/lwip/snmp_msg.h @@ -1,6 +1,6 @@ /** * @file - * [EXPIRIMENTAL] SNMP Agent message handling structures. + * [EXPERIMENTAL] SNMP Agent message handling structures. */ /*