server_common_messages.mes 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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. $NAMESPACE isc::server_common
  15. # \brief Messages for the server_common library
  16. % SRVCOMM_ADDRESSES_NOT_LIST the address and port specification is not a list
  17. This points to an error in configuration. What was supposed to be a list of
  18. IP address - port pairs isn't a list at all but something else.
  19. % SRVCOMM_ADDRESS_FAIL failed to listen on addresses (%1)
  20. The server failed to bind to one of the address/port pair it should according
  21. to configuration, for reason listed in the message (usually because that pair
  22. is already used by other service or missing privileges). The server will try
  23. to recover and bind the address/port pairs it was listening before.
  24. % SRVCOMM_ADDRESS_MISSING address specification is missing "address" or "port" element in %1
  25. This points to an error in configuration. Some address specification is missing
  26. either the address or port part and therefore can not be used.
  27. % SRVCOMM_ADDRESS_TYPE address specification type is invalid in %1
  28. This points to an error in configuration. Some address specification is
  29. malformed. The address part must be a string (and a valid IP address, either
  30. IPv4 or IPv6) and the port must be integer (in the valid range).
  31. % SRVCOMM_ADDRESS_UNRECOVERABLE failed to recover original addresses also (%2)
  32. The recovery of old addresses after SRVCOMM_ADDRESS_FAIL also failed (for
  33. the reason listed). This should not happen.
  34. We would really like to terminate the server right now, but considering that
  35. the server needs reconfiguration and it is not possible to reconfigure a server
  36. without it being run, we leave it running in inconsistent and broken state.
  37. It probably will not work, but will allow the reconfiguration. We hope to
  38. update the configuration system so we can really crash the server happily
  39. instead.
  40. % SRVCOMM_ADDRESS_VALUE address to set: %1#%2
  41. Debug message. This lists one address and port value of the set of
  42. addresses we are going to listen on (eg. there will be one log message
  43. per pair). This appears only after SRVCOMM_SET_LISTEN, but might
  44. be hidden, as it has higher debug level.
  45. % SRVCOMM_KEYS_DEINIT deinitilizing TSIG keyring
  46. Debug message indicating that the server is deinilizing the TSIG keyring. This
  47. could be seen at server shutdown only, but usually not even there, as leaving
  48. the TSIG in memory until the real shutdown and memory reclamation by OS is
  49. harmless, so we don't usually do it.
  50. % SRVCOMM_KEYS_INIT initializing TSIG keyring
  51. Debug message indicating new keyring is being loaded from configuration (either
  52. on startup or as a result of configuration update).
  53. % SRVCOMM_KEYS_UPDATE updating TSIG keyring
  54. Debug message indicating that the server is initializing global TSIG keyring.
  55. This should be seen only at server start.
  56. % SRVCOMM_PORT_RANGE port out of valid range (%1 in %2)
  57. This points to an error in configuration. The port in some address
  58. specification is out of the valid range (0-65535).
  59. % SRVCOMM_SET_LISTEN setting addresses to listen to
  60. Debug message, noting that the server is about to start listening on a
  61. different set of IP addresses and ports.