BIND 10 master, updated. 71611831f6d1aaaea09143d4837eddbd1d67fbf4 Merge branch 'trac1516'

BIND 10 source code commits bind10-changes at lists.isc.org
Tue Jan 28 01:27:24 UTC 2014


The branch, master has been updated
       via  71611831f6d1aaaea09143d4837eddbd1d67fbf4 (commit)
       via  5c9852647f78d37d6b3eca04daf88ed6a00f45bc (commit)
       via  b00635aa7e78a7398dd00788a9f7bf19e261c9d6 (commit)
       via  5017a99844df876a3aa65f9a59f4fc8d7b5e8e3d (commit)
      from  36adb91af2607cd54ed46d882ec622cbab006547 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 71611831f6d1aaaea09143d4837eddbd1d67fbf4
Merge: 36adb91 5c98526
Author: Mukund Sivaraman <muks at isc.org>
Date:   Tue Jan 28 06:47:44 2014 +0530

    Merge branch 'trac1516'

-----------------------------------------------------------------------

Summary of changes:
 src/bin/auth/auth_messages.mes |    6 +++---
 src/bin/auth/auth_srv.cc       |    3 ++-
 2 files changed, 5 insertions(+), 4 deletions(-)

-----------------------------------------------------------------------
diff --git a/src/bin/auth/auth_messages.mes b/src/bin/auth/auth_messages.mes
index e5b655a..5009de8 100644
--- a/src/bin/auth/auth_messages.mes
+++ b/src/bin/auth/auth_messages.mes
@@ -383,11 +383,11 @@ This message is also logged when the forwarding is restarted (for instance
 if b10-ddns is restarted and the internal connection needs to be created
 again), in which case it should be followed by AUTH_START_DDNS_FORWARDER.
 
-% AUTH_UNSUPPORTED_OPCODE unsupported opcode: %1
+% AUTH_UNSUPPORTED_OPCODE unsupported opcode %1 received from %2
 This is a debug message, produced when a received DNS packet being
 processed by the authoritative server has been found to contain an
-unsupported opcode. (The opcode is included in the message.) The server
-will return an error code of NOTIMPL to the sender.
+unsupported opcode. (The opcode and sender details are included in the
+message.) The server will return an error code of NOTIMPL to the sender.
 
 % AUTH_XFRIN_CHANNEL_CREATED XFRIN session channel created
 This is a debug message indicating that the authoritative server has
diff --git a/src/bin/auth/auth_srv.cc b/src/bin/auth/auth_srv.cc
index 8dd74c7..37fdf52 100644
--- a/src/bin/auth/auth_srv.cc
+++ b/src/bin/auth/auth_srv.cc
@@ -584,8 +584,9 @@ AuthSrv::processMessage(const IOMessage& io_message, Message& message,
                                  Rcode::NOTIMP(), stats_attrs, tsig_context);
             }
         } else if (opcode != Opcode::QUERY()) {
+            const IOEndpoint& remote_ep = io_message.getRemoteEndpoint();
             LOG_DEBUG(auth_logger, DBG_AUTH_DETAIL, AUTH_UNSUPPORTED_OPCODE)
-                      .arg(message.getOpcode().toText());
+                .arg(message.getOpcode().toText()).arg(remote_ep);
             makeErrorMessage(impl_->renderer_, message, buffer,
                              Rcode::NOTIMP(), stats_attrs, tsig_context);
         } else if (message.getRRCount(Message::SECTION_QUESTION) != 1) {



More information about the bind10-changes mailing list