diff options
author | Micael Karlberg <[email protected]> | 2010-04-23 18:34:27 +0000 |
---|---|---|
committer | Erlang/OTP <[email protected]> | 2010-04-23 18:34:27 +0000 |
commit | b37c80bd88871890351156ac0903f956d0462317 (patch) | |
tree | d861556edca52e7168b2c545e2a6fd6aa25a0ff7 /lib/megaco/doc/src/megaco_user.xml | |
parent | 01fcc37102224072adc1d9f90876aa32e8b62799 (diff) | |
download | otp-b37c80bd88871890351156ac0903f956d0462317.tar.gz otp-b37c80bd88871890351156ac0903f956d0462317.tar.bz2 otp-b37c80bd88871890351156ac0903f956d0462317.zip |
OTP-8561: A minor compiler related performance improvement.
Diffstat (limited to 'lib/megaco/doc/src/megaco_user.xml')
-rw-r--r-- | lib/megaco/doc/src/megaco_user.xml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/megaco/doc/src/megaco_user.xml b/lib/megaco/doc/src/megaco_user.xml index 6a0de29385..7332fa684d 100644 --- a/lib/megaco/doc/src/megaco_user.xml +++ b/lib/megaco/doc/src/megaco_user.xml @@ -471,7 +471,7 @@ protocol_version() = integer() ]]></code> <v>transaction_result() = action_reps()</v> <v>segment_result() = {segment_no(), last_segment(), action_reps()}</v> <v>action_reps() = [action_reply()]</v> - <v>failure() = {error, reason()}</v> + <v>failure() = {error, reason()} | {error, ReplyNo, reason()}</v> <v>reason() = transaction_reason() | segment_reason() | user_cancel_reason() | send_reason() | other_reason()</v> <v>transaction_reason() = error_desc()</v> <v>segment_reason() = {segment_no(), last_segment(), error_desc()}</v> @@ -486,6 +486,7 @@ protocol_version() = integer() ]]></code> <v>send_failed_reason() = {send_message_failed, reason_for_send_failure()}</v> <v>reason_for_send_failure() = term()</v> <v>ReplyData = reply_data()</v> + <v>ReplyNo = integer() > 0</v> <v>reply_data() = term()</v> <v>Extra = term()</v> </type> |