notify_out_messages.mes 4.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. # Copyright (C) 2011 Internet Systems Consortium, Inc. ("ISC")
  2. #
  3. # Permission to use, copy, modify, and/or distribute this software for any
  4. # purpose with or without fee is hereby granted, provided that the above
  5. # copyright notice and this permission notice appear in all copies.
  6. #
  7. # THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
  8. # REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
  9. # AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
  10. # INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
  11. # LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
  12. # OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  13. # PERFORMANCE OF THIS SOFTWARE.
  14. # No namespace declaration - these constants go in the global namespace
  15. # of the notify_out_messages python module.
  16. % NOTIFY_OUT_INVALID_ADDRESS invalid address %1#%2: %3
  17. The notify_out library tried to send a notify message to the given
  18. address, but it appears to be an invalid address. The configuration
  19. for secondary nameservers might contain a typographic error, or a
  20. different BIND 10 module has forgotten to validate its data before
  21. sending this module a notify command. As such, this should normally
  22. not happen, and points to an oversight in a different module.
  23. % NOTIFY_OUT_REPLY_BAD_OPCODE bad opcode in notify reply from %1#%2: %3
  24. The notify_out library sent a notify message to the nameserver at
  25. the given address, but the response did not have the opcode set to
  26. NOTIFY. The opcode in the response is printed. Since there was a
  27. response, no more notifies will be sent to this server for this
  28. notification event.
  29. % NOTIFY_OUT_REPLY_BAD_QID bad QID in notify reply from %1#%2: got %3, should be %4
  30. The notify_out library sent a notify message to the nameserver at
  31. the given address, but the query id in the response does not match
  32. the one we sent. Since there was a response, no more notifies will
  33. be sent to this server for this notification event.
  34. % NOTIFY_OUT_REPLY_BAD_QUERY_NAME bad query name in notify reply from %1#%2: got %3, should be %4
  35. The notify_out library sent a notify message to the nameserver at
  36. the given address, but the query name in the response does not match
  37. the one we sent. Since there was a response, no more notifies will
  38. be sent to this server for this notification event.
  39. % NOTIFY_OUT_REPLY_QR_NOT_SET QR flags set to 0 in reply to notify from %1#%2
  40. The notify_out library sent a notify message to the namesever at the
  41. given address, but the reply did not have the QR bit set to one.
  42. Since there was a response, no more notifies will be sent to this
  43. server for this notification event.
  44. % NOTIFY_OUT_RETRY_EXCEEDED notify to %1#%2: number of retries (%3) exceeded
  45. The maximum number of retries for the notify target has been exceeded.
  46. Either the address of the secondary nameserver is wrong, or it is not
  47. responding.
  48. % NOTIFY_OUT_SENDING_NOTIFY sending notify to %1#%2
  49. A notify message is sent to the secondary nameserver at the given
  50. address.
  51. % NOTIFY_OUT_SOCKET_ERROR socket error sending notify to %1#%2: %3
  52. There was a network error while trying to send a notify message to
  53. the given address. The address might be unreachable. The socket
  54. error is printed and should provide more information.
  55. % NOTIFY_OUT_SOCKET_RECV_ERROR socket error reading notify reply from %1#%2: %3
  56. There was a network error while trying to read a notify reply
  57. message from the given address. The socket error is printed and should
  58. provide more information.
  59. % NOTIFY_OUT_TIMEOUT retry notify to %1#%2
  60. The notify message to the given address (noted as address#port) has
  61. timed out, and the message will be resent until the max retry limit
  62. is reached.
  63. % NOTIFY_OUT_REPLY_UNCAUGHT_EXCEPTION uncaught exception: %1
  64. There was an uncaught exception in the handling of a notify reply
  65. message, either in the message parser, or while trying to extract data
  66. from the parsed message. The error is printed, and notify_out will
  67. treat the response as a bad message, but this does point to a
  68. programming error, since all exceptions should have been caught
  69. explicitely. Please file a bug report. Since there was a response,
  70. no more notifies will be sent to this server for this notification
  71. event.