aboutsummaryrefslogtreecommitdiffstats
path: root/lib/diameter/doc/src/notes.xml
diff options
context:
space:
mode:
Diffstat (limited to 'lib/diameter/doc/src/notes.xml')
-rw-r--r--lib/diameter/doc/src/notes.xml205
1 files changed, 204 insertions, 1 deletions
diff --git a/lib/diameter/doc/src/notes.xml b/lib/diameter/doc/src/notes.xml
index d241e2bd19..2daf84b0d4 100644
--- a/lib/diameter/doc/src/notes.xml
+++ b/lib/diameter/doc/src/notes.xml
@@ -11,7 +11,7 @@
<header>
<copyright>
<year>2011</year>
-<year>2012</year>
+<year>2013</year>
<holder>Ericsson AB. All Rights Reserved.</holder>
</copyright>
<legalnotice>
@@ -42,6 +42,209 @@ first.</p>
<!-- ===================================================================== -->
+<section><title>Diameter 1.4.1.1</title>
+
+ <section><title>Fixed Bugs and Malfunctions</title>
+ <list>
+ <item>
+ <p>
+ Fix broken Vendor-Specific-Application-Id configuration.</p>
+ <p>
+ RFC 6733 changed the definition of this Grouped AVP,
+ changing the arity of Vendor-Id from 1* to 1. A component
+ Vendor-Id can now be either list- or integer-valued in
+ service and transport configuration, allowing it to be
+ used with both RFC 3588 and RFC 6733 dictionaries.</p>
+ <p>
+ Own Id: OTP-10942</p>
+ </item>
+ </list>
+ </section>
+
+
+ <section><title>Improvements and New Features</title>
+ <list>
+ <item>
+ <p>
+ Add transport_opt() watchdog_config to allow non-standard
+ behaviour of the watchdog state machine.</p>
+ <p>
+ This can be useful during test but should not be used on
+ nodes that must conform to RFC 3539.</p>
+ <p>
+ Own Id: OTP-10898</p>
+ </item>
+ </list>
+ </section>
+
+</section>
+
+<section><title>Diameter 1.4.1</title>
+
+ <section><title>Fixed Bugs and Malfunctions</title>
+ <list>
+ <item>
+ <p>
+ Fix erroneous watchdog transition from DOWN to INITIAL.</p>
+ <p>
+ This transition took place when a peer connection was
+ reestablished following a failed capabilities exchange.
+ RFC 3539 requires DOWN to transition into REOPEN.</p>
+ <p>
+ Own Id: OTP-10692</p>
+ </item>
+ </list>
+ </section>
+
+
+ <section><title>Improvements and New Features</title>
+ <list>
+ <item>
+ <p>
+ Add application_opt() request_errors to make the handling
+ of incoming requests containing decode errors
+ configurable.</p>
+ <p>
+ The value 'callback' ensures that a handle_request
+ callback takes place for all such requests, the default
+ being for diameter to answer 3xxx series errors itself.</p>
+ <p>
+ Own Id: OTP-10686</p>
+ </item>
+ <item>
+ <p>
+ Add transport_opt() length_errors.</p>
+ <p>
+ The value determines how messages received over the
+ transport interface with an incorrect Message Length are
+ dealt with.</p>
+ <p>
+ Own Id: OTP-10687</p>
+ </item>
+ <item>
+ <p>
+ Add commentary on RFC 6733 to Standards Compliance
+ chapter of the User's Guide.</p>
+ <p>
+ Own Id: OTP-10688</p>
+ </item>
+ <item>
+ <p>
+ Allow a 5xxx result code in an answer-message on peer
+ connections using the RFC 6733 common dictionary.</p>
+ <p>
+ RFC 6733 allows this while RFC 3588 does not. A
+ handle_request callback can return {answer_message,
+ 3000..3999|5000..5999} in the simplest case.</p>
+ <p>
+ Own Id: OTP-10759</p>
+ </item>
+ <item>
+ <p>
+ Add dictionaries for RFC 6733.</p>
+ <p>
+ Both the common and accounting dictionaries differ from
+ their RFC 3588 counterparts, which is reflected in
+ generated record definitions. Application configuration
+ on a service or transport determines the dictionary that
+ will be used on a given peer connection.</p>
+ <p>
+ Own Id: OTP-10760</p>
+ </item>
+ <item>
+ <p>
+ Allow a handle_request callback to control diameter's
+ setting of Result-Code and Failed-AVP.</p>
+ <p>
+ Setting errors = false in a returned #diameter_packet{}
+ disables the setting.</p>
+ <p>
+ Own Id: OTP-10761</p>
+ </item>
+ </list>
+ </section>
+
+</section>
+
+<section><title>Diameter 1.4</title>
+
+ <section><title>Fixed Bugs and Malfunctions</title>
+ <list>
+ <item>
+ <p>
+ Add registered server names to the app file.</p>
+ <p>
+ Own Id: OTP-10442</p>
+ </item>
+ <item>
+ <p>
+ Fix #diameter_header{} handling broken by OTP-10445.</p>
+ <p>
+ The fault caused the the header of a [Header | Avps]
+ request to be ignored if both end_to_end_id and
+ hop_by_hop_id were undefined.</p>
+ <p>
+ Own Id: OTP-10609</p>
+ </item>
+ <item>
+ <p>
+ Fix error handling for handle_request callback.</p>
+ <p>
+ A callback that returned a #diameter_packet{} would fail
+ if the incoming request had decode errors.</p>
+ <p>
+ Own Id: OTP-10614</p>
+ </item>
+ <item>
+ <p>
+ Fix timing of service start event.</p>
+ <p>
+ The event did not necessarily precede other events as
+ documented.</p>
+ <p>
+ Own Id: OTP-10618</p>
+ </item>
+ <item>
+ <p>
+ Fix setting of header T flag at peer failover.</p>
+ <p>
+ The flag is now set in the diameter_header record passed
+ to a prepare_retransmit callback.</p>
+ <p>
+ Own Id: OTP-10619</p>
+ </item>
+ <item>
+ <p>
+ Fix sending of CER/CEA timeout event at capx_timeout.</p>
+ <p>
+ The event was not sent as documented.</p>
+ <p>
+ Own Id: OTP-10628</p>
+ </item>
+ <item>
+ <p>
+ Fix improper setting of Application-ID in the Diameter
+ header of an answer message whose E flag is set.</p>
+ <p>
+ The value should be that of the request in question. The
+ fault caused it always to be 0.</p>
+ <p>
+ Own Id: OTP-10655</p>
+ </item>
+ <item>
+ <p>
+ Fix faulty handling of AVP length errors.</p>
+ <p>
+ An incorrect AVP length but no other errors caused an
+ incoming request to fail.</p>
+ <p>
+ Own Id: OTP-10693</p>
+ </item>
+ </list>
+ </section>
+
+</section>
+
<section><title>Diameter 1.3.1</title>
<section><title>Known Bugs and Problems</title>